know about header files in 'c'?
whenever we use certain predefined functions like 'printf and scanf ' we need to include the related library file, like stdio.h etc...
we can also create our own header file . we can do this by creating a file with the desired functions in it, then saving it in the ' include ' directory with the extension .h , this can be done in turboc. hence we can include the file in our program.
I just want the clarification about the standard libraries, is the code for the header files we use, written in the normal c programing language? and can we get the predefined code for the predefined functions like printf , scanf , strcmp , strcat ,............... etc ??
If yes from where do we get the code......???