문제

Where do i find the definition/body of the printf/scanf & other similar predefined commonly used functions (getch, clrsr ...etc) of "Borland C" ?

도움이 되었습니까?

해결책

You cannot.. You can just see the prototype of printf/scanf in the header file <stdio.h>

You can find it in the standard library which comes with whatever compiler you are using..

다른 팁

Probably you cannot see the source code of predefined functions like printf() and scanf() since they are already compiled file with extension of .lib the compiler just need the declaration of function and doesn't need exact source file they are link later by linker to produce .exe file.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top