Omar Zelaya
2008-06-26 17:11:17 UTC
Hi
Can some help... what is the diference on:
char* pruebaretorno(char* ptr); ///definition
char* msg;
msg = (char*)pruebaretorno("omar");
and this
char* msg;
msg = pruebaretorno("omar");
What is the diference between the 2 calls,
Thanks in advance
Omar Zelaya
Can some help... what is the diference on:
char* pruebaretorno(char* ptr); ///definition
char* msg;
msg = (char*)pruebaretorno("omar");
and this
char* msg;
msg = pruebaretorno("omar");
What is the diference between the 2 calls,
Thanks in advance
Omar Zelaya