How do I use a pointer with a 2-dim array? I am converting string to char array.
char x[25][100];
const char* A= x;
A= x.c_str();
How do I use a pointer with a 2-dim array? I am converting string to char array.
char x[25][100];
const char* A= x;
A= x.c_str();
1) const char* A = a[0];
will point to the first of 25 strings in the 2d array.
2) A = x.c_str() doesn[t work because x is not c++ std::string class. character arrays like x do not have methods.
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.