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

dibakar & vekatesh..uttejana here..abt ur reply for in place reversal of linked list..wats p stands for there?

1 Answers  


What is %lu in c?

0 Answers  


What are the different types of pointers used in c language?

0 Answers  


Explain how to reverse singly link list.

0 Answers  


how to find out the union of two character arrays?

2 Answers  






What are the basic data types associated with c?

0 Answers  


can we store values and addresses in the same array? explain

3 Answers   TCS,


struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(ā€œ%dā€,s.x); }

2 Answers   Vector,


dennis ritchie invented C language in AT&T bell laboratory what is the extension of AT&T?

4 Answers  


What are the phases in s/w developed life cycle? wat is the diff b/w stack & queue...where do we use stack

6 Answers  


How many types of operators are there in c?

0 Answers  


There are 21 people in a room. They have to form groups of 3 people each. How many combinations are possible? Write a C program to print the same.

1 Answers   HCL, iGate,


Categories