Answers for "c++ string to const char"

C++
2

std string to const char * c++

std::string a = "string";
const char* b = a.c_str();
Posted by: Guest on November-12-2020
0

c++ convert const char* to int

#include <iostream>
#include <sstream>

const char* value = "1234567";
stringstream strValue;
strValue << value;

unsigned int intValue;
strValue >> intValue;

cout << value << endl;
cout << intValue << endl;
Posted by: Guest on September-05-2020

Browse Popular Code Answers by Language