home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD2.mdf
/
c
/
library
/
dos
/
cmdline
/
asmfix4
/
write.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1985-11-11
|
222 b
|
10 lines
#include <stdio.h>
main()
{
fprintf( stdout, "Hello, standard out\n" );
fprintf( stderr, "Hello, standard error\n" );
fprintf( stdaux, "Hello, standard aux\n" );
fprintf( stdprn, "Hello, standard prn\n" );
}