[[C/C++ tips]]
|
|
———
|
C/C++ tipsstdout/in/err streams in C and C++#include <stdio.h> extern FILE *stdin; extern FILE *stdout; extern FILE *stderr; #include <unistd.h> The following symbolic constants shall be defined for file streams:
|