Word:
Browse
Standard
Standard and Poor's
Standard and Poor's Index
standard atmosphere
Standard bearer
standard candle
standard cell
Standard Commands for Programmable Instruments
Standard d'Echange et de Transfert
standard deviation
standard for robot exclusion
Standard for the exchange of product model data
standard gauge
Standard Generalised Markup Language
standard generalized markup language
standard I/O
-- standard input/output --
Standard Instrument Control Library
standard interpretation
Standard Lisp
Standard ML
Standard ML of New Jersey
standard of life
standard of living
standard of measurement
standard operating procedure
standard poodle
standard pressure
standard procedure
standard schnauzer
standard semantics
Standard solution
standard temperature

standard input/output

(programming, operating system)standard input/output - The predefined input/output channels which every Unix process is initialised with. Standard input is by default from the terminal, and standard output and standard error are to the terminal. Each of these channels (controlled via a file descriptor 0, 1, or 2 - stdin, stdout, stderr) can be redirected to a file, another device or a pipe connecting its process to another process. The process is normally unaware of such I/O redirection, thus simplifying prototyping of combinations of commands.

The C programming language library includes routines to perform basic operations on standard I/O. Examples are "printf", allowing text to be sent to standard output, and "scanf", allowing the program to read from standard input.

About this site and copyright information - Online Dictionary Home