Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

change int into char

Name: Anonymous 2006-11-05 20:38

I'm programming in C++, how do I change an int into a character that has the same numeric value?

Name: Anonymous 2006-11-05 21:44

int i;
char j;
char buf[4];
sprintf(buf, "%d", i);
sscanf(buf, "%d", &j)

Simple!

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List