why we use "include" word before calling the header file. is there any special name for that include??????
Answer / amar
include is generally a sentence but in C it helps to include or we can say connect our source program to C header files such that #include<stdio.h>,#include<math.h> etc.
| Is This Answer Correct ? | 11 Yes | 0 No |
What is difference between array and pointer in c?
What is the output of the following program #include<stdio.h> main() { int i=0; fork(); printf("%d",i++); fork(); printf("%d",i++); fork(); wait(); }
can anyone please tell about the nested interrupts?
What is structure padding & expalain wid example what is bit wise structure?
write a own function to compare two strings with out using stringcomparition function?
Differentiate between full, complete & perfect binary trees.
What is the difference between fread and fwrite function?
What is wrong with this program statement?
Write a C program to convert an integer into a binary string?
What does c in a circle mean?
which operator having lowest precedence?? a.)+ b.)++ c.)= d.)%
Is it possible to have a function as a parameter in another function?