stderr - C stdio.h

C examples for stdio.h:stderr

Type

object

From


<cstdio>
<stdio.h>

Description

Standard error stream

Prototype

FILE * stderr;

Demo Code

#include <stdio.h>

int main ()/* w  w w  . j  av a  2  s .  co  m*/
{
  char c;

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

Related Tutorials