S
Sona
Hi,
How is it possible to convert a char to char* in C? I'm trying to append
a char to the end of a char* using the strcat function.. the following
however is not working:
char* s1, *s2;
char* result;
....
....
result = strcat(s1, (const char*)s2[3]); // application crashes here
What am I doing wrong? thanks
Sona
How is it possible to convert a char to char* in C? I'm trying to append
a char to the end of a char* using the strcat function.. the following
however is not working:
char* s1, *s2;
char* result;
....
....
result = strcat(s1, (const char*)s2[3]); // application crashes here
What am I doing wrong? thanks
Sona