+ 2
What is the function of each header?
What's the function of each header possibilities (isotream, conio, upstream , stdio, manip)?
2 Réponses
+ 5
Each header file has the prototypes of the functions and the classes that u are going to use in your code.
For example:
When you use printf() function then its declaration is present in <stdio.h>, hence while executing this printf() line of u=your C code the complier knows that there is function named printf() by this header file.
0
Wow thanks, I got it! Very usefull answer!