SpeedBWild
Programmer
I have a function that is designed as
const char* NameOfFunction(void);
How do I get the result from that function call? I can not change the function call.
Here is what I have tried.
char *retValue;
retValue=NameOfFunction;
this does not seem to work. Any help would be appreciated.
const char* NameOfFunction(void);
How do I get the result from that function call? I can not change the function call.
Here is what I have tried.
char *retValue;
retValue=NameOfFunction;
this does not seem to work. Any help would be appreciated.