top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

C: What is the difference between stderr and stdout?

+2 votes
336 views

Examples would be helpful.

posted Aug 18, 2015 by anonymous

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

When a program starts, three text streams are defined:

1. Standard input (stdin) reads input from the terminal

2. Standard output (stdout) writes output to the terminal

3. Standard error (stderr) writes diagnostic output to the terminal.

Streams stdin, stdout, and stderr are implicitly opened the first time they are used.

  1.  Stream stdin is opened with fopen("stdin", "r").

  2. Stream stdout is opened with fopen("stdout", "w").

  3. Stream stderr is opened with fopen("stderr", "w").

These streams are not real iSeries Data Management system files, but are simulated as files by the ILE C library routines. By default, they are directed to the terminal session.

The stdin, stdout, and stderr streams can be associated with other devices using the OS/400 override commands on the files STDIN, STDOUT, and STDERR respectively. If stdin, stdout, and stderr are used, and a file override is present on any of these streams prior to opening the stream, then the override takes effect, and the I/O operation may not go to the terminal.

If stdout or stderr are used in a non-interactive job, and if there are no file overrides for the stream, then the ILE C compiler overrides the stream to the printer file QPRINT. Output prints or spools for printing instead of displaying at your workstation.

If stdin is specified (or the default accepted) for an input file that is not part of an interactive job, then the QINLINE file is used. You cannot re-read a file with QINLINE specified, because the database reader will treat it as an unnamed file, and therefore it cannot be read twice. You can avoid this by issuing an override. If you are reading characters from stdin, F4 triggers the run time to end any pending input and to set the EOF indicator on. F3 is the same as calling exit() from your ILE C program.

If stdin is specified in batch and has no overrides associated with it, then QINLINE will be used. If stdin has overrides associated with it, then the override is used instead of QINLINE.

Note:

You can use freopen() to reopen text streams. The stdout and stderr streams can be reopened for printer and database files. The stdin stream can be overridden only with database files.

answer Aug 18, 2015 by Mohammed Hussain
...