What is the meaning When we write "#include" what is # and
what does include does there???
Answer Posted / j.md riyasudeen
# include "file name" that represents its already inbuilt in
the programming coding by developer.if the developer used
the any other symbols like(*include,@include) this is header
file we should use in c programs
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
Explain how can you tell whether a program was compiled using c versus c++?
What are control structures? What are the different types?
What are the applications of c language?
Explain the process of converting a Tree into a Binary Tree.
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
How do you convert strings to numbers in C?
What are the rules for identifiers in c?
Can you return null in c?
What is a list in c?
What are the key features in c programming language?
How many levels of pointers can you have?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
Can a variable be both static and volatile in c?
What is non linear data structure in c?
Where local variables are stored in c?