Syntax | #include <stdio.h> extern FILE *stderr, *stdin, *stdout; | |
Description | A file with associated buffering is called a stream and is declared to be a pointer to a defined type There are three data streams which are predefined at program startup and need not be opened explicitly (see | |
|
| Standard input, for reading conventional input. |
|
| Standard output, for writing conventional output. |
|
| Standard error, for the output of diagnostic and error messages. |
| When opened, the standard error stream is not fully buffered (see The following symbolic values in
File descriptor for standard input,
File descriptor for standard output,
File descriptor for standard error, | |
See also |
|