I'm trying to convert an integer to a string in C but the current code doesn't make it.
I'm not seeking to display it in the screen, so all the functions printf, sprintf... are irrelevant.
int X = 15;
char *T;
T = (char*)X;
// Expected result : "15"
Can anyone help please ?
Thanks.