how many header file is in C language ?
Answer Posted / saisujith
27 header files according to borlandc ...... There after it
may be increased....
But 27 header files is the correct one....
| Is This Answer Correct ? | 5 Yes | 5 No |
Post New Answer View All Answers
What is #define size in c?
What happens if header file is included twice?
What is function what are the types of function?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
Explain how can I make sure that my program is the only one accessing a file?
What is the symbol indicated the c-preprocessor?
a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none
Do you know the use of fflush() function?
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b
What is getch?
Is printf a keyword?
How do you print only part of a string?
What is volatile keyword in c?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
Can you mix old-style and new-style function syntax?