Hi, I have this constant, #define CAT_CONTROL 7
I want to convert CAT_CONTROL to const char * and I don't want to do this: char cAux[2]; itoa(CAT_CONTROL ,cAux,10); I try to use a preprocessor operator: #define STR(x) #x But that doesn't work, because I obtain "CAT_CONTROL" like result. Any help would be greatly. Best Regards, German -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
