A
akarui.tomodachi
What is the most easiest way to convert an integer value to ASCII
character format ?
I tried with sprintf(). It works.
Is there any other way to do that ?
Objective::
I like to convert an integer value of 3 and write into a string buffer.
What I did:
.....
.....
char myStr[];
int myInt = 3;
sprintf(myStr, %d,myInt);
.....
.....
Please comment.
character format ?
I tried with sprintf(). It works.
Is there any other way to do that ?
Objective::
I like to convert an integer value of 3 and write into a string buffer.
What I did:
.....
.....
char myStr[];
int myInt = 3;
sprintf(myStr, %d,myInt);
.....
.....
Please comment.