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


Please Help Members By Posting Answers For Below Questions

What are the 4 types of programming language?

822


Write a c program to demonstrate character and string constants?

1958


Array is an lvalue or not?

887


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

865


What is extern storage class in c?

755


What are the types of type qualifiers in c?

884


Explain how can you be sure that a program follows the ansi c standard?

1189


How can I copy just a portion of a string?

1109


Explain how do you generate random numbers in c?

858


What is the use of define in c?

843


What is a void pointer in c?

888


What is zero based addressing?

963


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

870


What do the functions atoi(), itoa() and gcvt() do?

955


How can I check whether a file exists? I want to warn the user if a requested input file is missing.

943