Hi All,
Currently i'm using sprintf
to copy from pointer variable to a character array.
sprintf(length,"%.*s",(int)len,part1);
where part1 is a pointer to a character array..
length is a characteter array too.
Is there a way i can do the above thingy to copy the part1 to a integer variable?
Thanks in advance