WHAT IS HEADER?
Answers were Sorted based on User's Feedback
Answer / pavan bhalot
header file is that file in which predefines all those
function those are useig in program.like scanf,printf, getch
etc.
Is This Answer Correct ? | 62 Yes | 4 No |
Answer / mohit chawla
Header is preprocessor directive that is used to include some
predefind function and properties declared in some predefined
header files
Is This Answer Correct ? | 9 Yes | 1 No |
Answer / nagendra reddy
The Headers property is a collection of name/value pairs that
contain the HTTP header values returned with the response.
Common header information returned from the Internet resource
is exposed as properties of the HttpWebResponse class.
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / jyoti
header file is a preprocessor directive that contains all
the functions thet we have to use in our program and has to
be declared before the main function.
ex: headerfile <stdio.h> include functions such as printf()
and scanf() that puts the output and gets the input
repectively
Is This Answer Correct ? | 1 Yes | 0 No |
Include directory is special directory which content all the
header files of c language. Extension of header files in c
language is header. All header files only keep declaration of
functions, declaration of data type and micro constants. Body
of function i.e. function definition is not written in the
header files. Hence no one can get source code of function
like printf, clrscr etc. All the function declaration in
header file is extern. Since visibility of extern data type is
whole the program. and other file can also access such
function. Body of function of header file is supplied at the
time of linking in header file.
Is This Answer Correct ? | 1 Yes | 0 No |
Print all numbers which has a certain digit in a certain position eg: number=45687 1 number=4 2 number=5 etc
What are categories used for in c?
What is meant by int main ()?
what is the benefit of c30
What are the types of bitwise operator?
Is null equal to 0 in sql?
which one low Priority in c? a)=,b)++,c)==,d)+
Difference between Class and Struct.
13 Answers Ericsson, Motorola, Wipro,
If 4 digits number is input through the keyboard, Write a program to calculate sum of its 1st & 4th digit.
what is difference between procedural language and functional language ?
WHAT IS THE DIFFERENCE BETWEEN malloc() and calloc() in c file management?
28 Answers 3D PLM, Code Studio, Deltech, IBM,
What is union and structure in c?