stdin - C stdio.h

C examples for stdio.h:stdin

Type

object

From


<cstdio>
<stdio.h>

Description

Standard input stream

Prototype

FILE * stdin;

Demo Code

#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;
}

Related Tutorials