SyntaxFix
Write A Post
Hire A Developer
Questions
use the itoa() function included in stdlib.h
itoa()
stdlib.h
char buffer[7]; //the ASCII of the integer will be stored in this char array itoa(-31596,buffer,10); //(integer, yourBuffer, base)