T
Toro
1) say,
CString b;
char * a;
how do I assign b into a ?
strcpy(a,b) has no problem in compiling but I don't get what I want.
2) I used
char ** argv
to get input from the console and I can get back int or char * . But how can
I do the reverse ? (Assigning variables of type int and char * into a char
**)
Thanks!
CString b;
char * a;
how do I assign b into a ?
strcpy(a,b) has no problem in compiling but I don't get what I want.
2) I used
char ** argv
to get input from the console and I can get back int or char * . But how can
I do the reverse ? (Assigning variables of type int and char * into a char
**)
Thanks!