how can I covert int to char in C -
i'm trying covert int
char
. there way that?
for example:
{ int i; char d; = 55; d = i; printf("%c\n", d); }
how make d = 55
?
if want put number 55 string, use sprintf
i'm trying covert int
char
. there way that?
for example:
{ int i; char d; = 55; d = i; printf("%c\n", d); }
how make d = 55
?
if want put number 55 string, use sprintf
Comments
Post a Comment