C examples for stdio.h:stdin
object
<cstdio> <stdio.h>
Standard input stream
FILE * stdin;
#include <stdio.h> int main ()/* ww w . j a v a2 s .c om*/ { char c; for (c = 'A' ; c <= 'Z' ; c++) { putc (c , stdin); } return 0; }