C examples for stdio.h:stderr
object
<cstdio> <stdio.h>
Standard error stream
FILE * stderr;
#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; }