+ 2

What is the function of each header?

What's the function of each header possibilities (isotream, conio, upstream , stdio, manip)?

16th Nov 2016, 2:12 PM
Bernat
Bernat - avatar
2 Answers
+ 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.
16th Nov 2016, 2:37 PM
Pranjal Upadhyay
Pranjal Upadhyay - avatar
0
Wow thanks, I got it! Very usefull answer!
16th Nov 2016, 2:52 PM
Bernat
Bernat - avatar