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
This is old but here's another way.
#include #define atoa(x) #x int main(int argc, char *argv[]) { char *string = atoa(1234567890); printf("%s\n", string); return 0; }