2

Where can I find those standard library (stdio.h, stdlib.h) which I use daily on the system?

4

2 回答 2

0

在 Linux 中,它们通常存储在/usr/include目录中。在 Windows(和 Visual Studio)下,它们位于C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include (如果您更改了默认安装位置,可能会有所不同)。

find此外,文件搜索(locate如 Christian 建议的 , 或 Windows Explorer 搜索)是查找这些文件的好方法。

于 2013-09-10T07:59:57.173 回答
0

通常,在 Linux、BSD 和 Mac OS X 等 *nix 环境中,目录“/usr/include”是一个好的开始。如果您在那里没有找到它们,请尝试使用 locate 命令。

# 定位 stdio.h

如果您无法找到这些文件,请更新您的 mlocate 数据库 (# sudo updatedb),然后再次尝试本地化。

于 2013-09-10T08:03:20.803 回答