Originally posted by SourceCode

getchar() reads the next character from stdin and returns it. So you could do something like..
Code:
/* Get a character and print it */
int c;
c = getchar();
puts(c);
Goodluck.
Um, no.

Quzah.