Programming Reference/Librarys
Question & Answer
Q&A is closed
/* * getchar example code * http://code-reference.com/c/stdio.h/getchar */ #include <stdio.h> /* including standard library */ //#include <windows.h> /* uncomment this for Windows */ #include <ctype.h> int main ( void ) { int chars; printf("type in . to end your input : "); while ((chars = getchar()) != '.' ){ putchar(chars); } return 0; }
output: user@host:~$ ./getchar type in . to end your input : Test 1234. Test 1234