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
In a switch statement, explain what will happen if a break statement is omitted?
what is ur strangth & weekness
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
Explain what is wrong with this program statement?
Explain indirection?
What is ponter?
Why is void main used?
What are the restrictions of a modulus operator?
What is New modifiers?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
What is the use of a conditional inclusion statement in C?
Can you assign a different address to an array tag?
difference between object file and executable file
Do you know the difference between exit() and _exit() function in c?
Why doesnt this code work?