{{keywords>wiki library source code example reference}} ===== getchar ===== #include int getchar( void ); Get a character ===== C Sourcecode Example ===== /* * getchar example code * http://code-reference.com/c/stdio.h/getchar */ #include /* including standard library */ //#include /* uncomment this for Windows */ #include int main ( void ) { int chars; printf("type in . to end your input : "); while ((chars = getchar()) != '.' ){ putchar(chars); } return 0; } ==== output ==== output: user@host:~$ ./getchar type in . to end your input : Test 1234. Test 1234