📅  最后修改于: 2023-12-03 15:40:46.132000             🧑  作者: Mango
如果你是使用 Ubuntu 18.04 操作系统的程序员,你可能需要使用一些 Linux 头文件来编写你的程序。本文将向你介绍如何添加 Linux 头文件到 Ubuntu 18.04 中的 Shell-Bash 环境中。
$ mkdir example
$ cd example
$ touch example.c
<stdio.h>
和 <stdlib.h>
头文件。#include <stdio.h>
#include <stdlib.h>
int main() {
printf("Hello World!\n");
return 0;
}
$ gcc example.c -o example
$ ./example
Hello World!
<sys/types.h>
,你会遇到一个错误:example.c:1:10: fatal error: sys/types.h: No such file or directory
#include <sys/types.h>
^~~~~~~~~~~~~~
compilation terminated.
<sys/types.h>
,你需要安装 libc6-dev:$ sudo apt install libc6-dev
<sys/types.h>
了。$ gcc example.c -o example
$ ./example
Hello World!
在 Ubuntu 18.04 中添加 Linux 头文件到 Shell-Bash 环境中是相当容易的。只需要安装适当的开发包,并在你的示例程序中包含你所需的头文件。这样你就可以愉快地编写你的程序了!