whats the use of header file in c?
Answers were Sorted based on User's Feedback
Answer / shalini
header file constitutes all the pre defined functions that
are necessary for a program to run.hence whenever u compile
a program the compiler links all the header files into the
corresponding program and starts execution
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / prabhakar
because it consists the definations of per defined functions
...
hence it will be includes the corresponding definations of
function when ever you called the function.
| Is This Answer Correct ? | 4 Yes | 3 No |
Write a program to compare two strings without using the strcmp() function
42 Answers Accenture, Arba Minch University,
What is advantage of pointer in c?
Explain continue keyword in c
What is the difference b/w Structure & Union?
Dear Sir, we are required the bubble sorting programs Regs Prem
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
Is c weakly typed?
hello everybody can we change a the adress of a variabl i mean can i put for exemple for a int *p: &p=6 ?????????
what is the c source code for the below output? 1 0 1 1 0 1 0 1 0 1 1 0 1 0 1
which is the best site or book for learning C...and i need the content for C..how to get the good programming skills....? can plz suggest me....
to find out the reverse digit of a given number
6 Answers Infosys, Microsoft, TCS, Wipro,
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?