WHAT IS HEADER?

Answers were Sorted based on User's Feedback



WHAT IS HEADER?..

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

WHAT IS HEADER?..

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

WHAT IS HEADER?..

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

WHAT IS HEADER?..

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

WHAT IS HEADER?..

Answer / md.afzal khan

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

WHAT IS HEADER?..

Answer / tdurga

HEADER IS INCLUDE <STDIO.H>.

Is This Answer Correct ?    5 Yes 8 No

WHAT IS HEADER?..

Answer / guest

top of the page

Is This Answer Correct ?    1 Yes 6 No

WHAT IS HEADER?..

Answer / avinash

HEADER IS INCLUDE <STDIO.H>.

Is This Answer Correct ?    12 Yes 22 No

Post New Answer

More C Interview Questions

what is the differance between pass by reference and pass by value.

7 Answers   Infosys,


What is signed and unsigned?

0 Answers  


Name the language in which the compiler of "c" in written?

3 Answers   Bajaj,


increment operateor (++)and decrament(--) #include<stdio.h> #inclide<conio.h> main() { int x=15; while(x!=0) scanf("%d",&x); {

2 Answers   HCL, Syntel, TCS,


main() { int i=0; while(+(+i--)!=0) i-=i++; printf(i); }

3 Answers  






Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.

0 Answers  


write a program in c language for the multiplication of two matrices using pointers?

8 Answers   Ignou,


Differentiate between calloc and malloc.

0 Answers   Wipro,


What are the types of data structures in c?

0 Answers  


Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database

2 Answers   TCS, Unisys, Webyog,


write a c program for swapping two strings using pointer

0 Answers  


Is main a keyword in c?

0 Answers  


Categories