int num = 321; char snum[5]; // convert num to string and save in string snum itoa(num, snum, 10); // print our string printf("%s ", snum);