How do you convert an int (integer) to a string? I\'m trying to make a function that converts the data of a struct into a string to save it in a fi
int
struct
Use function itoa() to convert an integer to a string
itoa()
For example:
char msg[30]; int num = 10; itoa(num,msg,10);