头文件选择

程序都有定式,无非那么几下子,先记住这些头文件的引用吧。

#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <string.h>
#include <sys/types.h>     //fd_set 文件描述集
#include <netinet/in.h>   //互联网地址簇
#include <sys/socket.h>
#include <sys/wait.h> //wait和waitpid函数
#include <pthread.h>  //

你可能感兴趣的:(c,linux,职场,休闲)