Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在哪里可以找到“Borland C”的 printf/scanf 和其他类似的预定义常用函数(getch、clrsr ...等)的定义/主体?
你不能..你可以在头文件中看到printf/scanf的原型<stdio.h>
<stdio.h>
您可以在您使用的任何编译器随附的标准库中找到它。
可能您看不到 printf() 和 scanf() 等预定义函数的源代码,因为它们已经是扩展名为 .lib 的编译文件,编译器只需要函数声明,不需要它们稍后链接的确切源文件生成 .exe 文件的链接器。