what is the function of .h in #include<stdio.h> in c ?
Answer Posted / dilip kumar
u know that every file is exist with extention name
so .h is a extention name of all header file.
| Is This Answer Correct ? | 50 Yes | 17 No |
Post New Answer View All Answers
What is wild pointer in c?
What oops means?
What is the difference between union and anonymous union?
Explain the use of bit fieild.
Can we change the value of constant variable in c?
What is d'n in c?
Define Spanning-Tree Protocol (STP)
List the difference between a 'copy constructor' and a 'assignment operator' in C?
can any one tel me wt is the question pattern for NIC exam
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
What is a constant and types of constants in c?
Explain 'bit masking'?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What is pointer in c?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }