'programming/C_C++'에 해당되는 글 286건

  1. 2017.12.05 Standard file descriptors

/*** unistd.h ***/

/* Standard file descriptors.  */

#define STDIN_FILENO    0       /* Standard input.  */
#define STDOUT_FILENO   1       /* Standard output.  */
#define STDERR_FILENO   2       /* Standard error output.  */


 

Posted by 공간사랑
,