what information does the header files contain?

Answers were Sorted based on User's Feedback



what information does the header files contain?..

Answer / naveena

header file is a file containing C declarations and macro
definitions to be shared between several source files

Is This Answer Correct ?    18 Yes 5 No

what information does the header files contain?..

Answer / mohancvk

the header files consists of file-inclusions,macro
definitions and declarations which get replaced with the
textual source code at preprocessor level ie., before
compilation process.

Is This Answer Correct ?    11 Yes 4 No

what information does the header files contain?..

Answer / shashi

In computer programming, particularly in the C and C++
programming languages, a header file or include file is a
file, usually in the form of source code, that a compiler
automatically includes when processing another source file.
Typically, programmers specify the inclusion of header files
via compiler directives at the beginning (or head) of the
other source file.

Is This Answer Correct ?    7 Yes 1 No

what information does the header files contain?..

Answer / 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

what information does the header files contain?..

Answer / vivek k dixit

A header file contains #define,structure,union and enum
declarations,it also contains global variable and external
funtion declarations.The # include directive should be used
to pull in header files.

Is This Answer Correct ?    5 Yes 1 No

what information does the header files contain?..

Answer / avinandan

Header files contain line- and field-oriented ASCII text
It contain declerations,macro definitions.

Is This Answer Correct ?    0 Yes 7 No

Post New Answer

More C Interview Questions

given post order,in order construct the corresponding binary tree

0 Answers   S-Cube, Wipro,


Write a pro-gramme to determine whether the number is even or odd?

1 Answers  


no consistent academics. how to answer the question

0 Answers  


What's wrong with the call "fopen ("c:\newdir\file.dat", "r")"?

1 Answers  


Is array name a pointer?

0 Answers  


i want to have a program to read a string and print the frequency of each character and it should work in turbo c

3 Answers   Persistent, Wipro,


Can you think of a way when a program crashed before reaching main? If yes how?

2 Answers  


output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }

2 Answers   Elysium,


extern static int i func() { i =10; i++; printf("%d \n",i); } main() { i =20; printf("%d \n",i); func(); printf("%d \n",i); }

2 Answers  


What is the size of array float a(10)?

0 Answers  


please give me answer with details #include<stdio.h> main() { int i=1; i=(++i)*(++i)*(++i); printf("%d",i); getch(); }

3 Answers  


about c language

0 Answers  


Categories