From 7e0f021a9aec35fd8e6725e87e3313b101d26f5e Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Sun, 27 Jan 2008 11:37:44 +0100 Subject: Initial import (2.0.2-6) --- reference/C/MISC/stdfiles.html | 81 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 reference/C/MISC/stdfiles.html (limited to 'reference/C/MISC/stdfiles.html') diff --git a/reference/C/MISC/stdfiles.html b/reference/C/MISC/stdfiles.html new file mode 100644 index 0000000..568edc2 --- /dev/null +++ b/reference/C/MISC/stdfiles.html @@ -0,0 +1,81 @@ +STDIN, STDOUT, STDERR + +
+
+

STDIN, STDOUT, STDERR

+
+
+

+These three file pointers are +automatically defined when a program +executes and provide access to the keyboard and screen. +

+ +

stdin

+ +By default stdin accesses the keyboard. Functions that read +stdin include... + +The following functions can access stdin + + +stdin example program. +

stdout

+stdout sends data to the screen. Functions that write to stdout +include.... + +

stderr

+ +stderr also writes to the screen. If you are using a Unix based system +the data sent to stdout and stderr can be seperated and sent to +different places. + +Functions that could write to stderr include... + + + +
+

+

+ + + + +
+Top + +Master Index + +C Keywords + +Functions +
+
+

+ +


+If you wish to create file pointers to perform I/O to other devices +you should use fopen +
+
Martin Leslie + +

+ -- cgit v1.2.3-54-g00ecf