Thread
:
Character conversion
View Single Post
04-22-2003, 07:54 AM
#
3
(
permalink
)
socomm
Registered User
Join Date: Apr 2003
Location: Slums of Los Angeles
Posts: 4
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
View Public Profile
Visit socomm's homepage!
Find More Posts by socomm