stdout - C stdio.h

C examples for stdio.h:stdout

Type

object

From


<cstdio>
<stdio.h>

Description

Standard output stream

Prototype

FILE * stdout;

Demo Code

#include <stdio.h>

int main ()/*from www . java 2s .  c  o  m*/
{
  char c;

  for (c = 'A' ; c <= 'Z' ; c++) {
    putc (c , stdout);
  }
  return 0;
}

Related Tutorials