what information does the header files contain?
Answer Posted / dips
Header files contain the definations of the functions that
are to be used in the program.In order to recognise the
defined functions ex, printf, scanf etc you need to define
the header file STDIO.h where the defination of these
functions are declared.Which makes writting of the program
very easy
| Is This Answer Correct ? | 16 Yes | 12 No |
Post New Answer View All Answers
How many types of operators are there in c?
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
What is the equivalent code of the following statement in WHILE LOOP format?
When c language was developed?
Explain the difference between malloc() and calloc() in c?
How does selection sort work in c?
Why does not c have an exponentiation operator?
Write a program to print fibonacci series without using recursion?
Is c object oriented?
What is the benefit of using #define to declare a constant?
How can I change the size of the dynamically allocated array?
What is sizeof int?
What are the differences between Structures and Arrays?
why return type of main is not necessary in linux
What is the difference between printf and scanf in c?