A newer version of this document is available. Customers should click here to go to the newest version.
Visible to Intel only — GUID: gwd1642082958850
Ixiasoft
Visible to Intel only — GUID: gwd1642082958850
Ixiasoft
6.6.1. Standard Input, Standard Output and Standard Error
Hello World
#include <stdio.h> int main () { printf ("Hello world!"); return 0; }
When using the UNIX-style API, you can use the file descriptors stdin, stdout, and stderr, defined in unistd.h, to access, respectively, the standard in, standard out, and standard error character I/O streams. unistd.h is provided as part of the newlib C library package.