有没有办法查看 stdio.h 中的内容或它是如何实现的?

Is there a way to see what's inside the stdio.h or how it's implemented?

有没有办法查看 stdio.h 中的内容或它是如何实现的? 我了解到标准函数在 stdio.h 文件中声明 我在我的电脑里找不到它 另外我听说还有一个文件,里面写的都是函数体, 这称为 stdio.c 文件。 谁能告诉我这个文件在我电脑里的什么地方(我用的是 gcc 编译器) 或者看看它是如何实现的?

据我所知,对于 Windows,c++ 头文件存储在 C:\Program Files (x86)\Windows Kits\Include\"some_version"\ucrt 中,对于 linux,则存储在 /usr/include 中。在那里你可以找到 stdio.h 文件和任何其他标准的 c++ 头文件。

否则在互联网上寻找 stdio.h 源代码也是一种选择