#include<stdio.h>-———----——-#include<unistd.h>-——-----——- #include<sys/types.h>—---------——-int main (int argc, char* argv[])————-{ execl ("hello", argv[0],NULL); } hell0.c #include <stdio.h>-———----—-main ( { int i, s=0; for(i=1 ;i<=500 ; i++)———-----—- s=s+i ; printf ("1+2+..50O=%d\n",s) ; }的头文件分别表示什么
时间: 2023-08-22 20:07:51 浏览: 235
wangluotongxin.rar_C-C直接通信
- `stdio.h` 包含了标准输入输出函数的声明,如 `printf`、`scanf`、`fopen`、`fclose` 等。
- `unistd.h` 包含了系统调用的声明,如 `execl`、`fork`、`pipe`、`chdir` 等。
- `sys/types.h` 包含了一些基本类型的声明,如 `pid_t`、`size_t`、`off_t` 等。
阅读全文