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);


Published

02 October 2013

Category

development

Tags