convert integer into character in C
Sometimes it is useful to convert int variables int char type.
standard lib has already provided some functions to deal with that.
# include<stdlib.h>
itoa(origin_int , target_buffer , hex);
sprintf(target_buffer , format , origin_number);