Hi, me again,
i know of atoi, but is there a reverse of it??
I want to change an int into a string so i can strcat it to another string.
char s1[20]; (eg: "WOW "
int x = 100;
//something changes 100 to a string here
strcat(s1, x);
//result should be "WOW 100"
Thanks again,
-evosix-
i know of atoi, but is there a reverse of it??
I want to change an int into a string so i can strcat it to another string.
char s1[20]; (eg: "WOW "
int x = 100;
//something changes 100 to a string here
strcat(s1, x);
//result should be "WOW 100"
Thanks again,
-evosix-