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
What are the 4 types of programming language?
Write a c program to demonstrate character and string constants?
Array is an lvalue or not?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
What is extern storage class in c?
What are the types of type qualifiers in c?
Explain how can you be sure that a program follows the ansi c standard?
How can I copy just a portion of a string?
Explain how do you generate random numbers in c?
What is the use of define in c?
What is a void pointer in c?
What is zero based addressing?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
What do the functions atoi(), itoa() and gcvt() do?
How can I check whether a file exists? I want to warn the user if a requested input file is missing.