View Single Post
Old 04-22-2003, 07:54 AM   #3 (permalink)
socomm
Registered User
 
socomm's Avatar
 
Join Date: Apr 2003
Location: Slums of Los Angeles
Posts: 4
socomm is on a distinguished road
Send a message via AIM to socomm
Arrow

Yes

Code:
const char* x;
char* y = *x;
invalid conversion from const char to char*
though
Code:
const char* x;
char* y;

*y = *x;
will compile just fine( with the exception that the program crashes upon launch).
socomm is offline   Reply With Quote