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

How can I access a memory located at certain address?

2 Answers   CSC,


`write a program to display the recomended action depends on a color of trafic light using nested if statments

0 Answers  


Why do we use main function?

0 Answers  


What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers

0 Answers  


stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.

0 Answers  






Write a program to reverse a given number in c?

0 Answers  


What is a built-in function in C?

1 Answers  


Is c procedural or functional?

0 Answers  


#define MAX(x,y) (x) > (y) ? (x) : (y) main() { int i = 10, j = 5, k = 0; k = MAX(i++, ++j); printf("%d %d %d", i,j,k); } what will the values of i , j and k? }

14 Answers   CDAC, GATE, NDS, TCS,


List some of the dynamic data structures in C?

0 Answers  


FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.

0 Answers   Wilco,


Is it valid to address one element beyond the end of an array?

0 Answers  


Categories