All right this is my first post so be gentle. Here is my problem I am looking to convert a const char* to a char * and vice versa. All ideas, links, or flames are welcomed.
Code:
const char* x;
char* y;
y = x;
What is the proper way to convert a const char to a char?