what information does the header files contain?
Answer Posted / 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 |
Post New Answer View All Answers
Write an efficient algo and C code to shuffle a pack of cards.. this one was a feedback process until we came up with one with no extra storage.
Are the variables argc and argv are local to main?
Is sizeof a keyword in c?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
what are the 10 different models of writing an addition program in C language?
What are the preprocessor categories?
what is the basis for selection of arrays or pointers as data structure in a program
What type is sizeof?
Explain what are compound statements?
Where static variables are stored in c?
What is #line in c?
How can you find out how much memory is available?
What are different storage class specifiers in c?
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
Explain how can you determine the size of an allocated portion of memory?