what does ‘#include’ mean?

Answer Posted / vatsava

This is a preprocessor directive & causes one file to be
included into another. Whenever we #include a file it
causes the entire contents of the file to be inserted into
the source code

Is This Answer Correct ?    20 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why c is called free form language?

560


What is the benefit of using #define to declare a constant?

599


Why is C language being considered a middle level language?

643


int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer

644


Explain the use of keyword 'register' with respect to variables.

584






What is wrong with this program statement?

601


How can I discover how many arguments a function was actually called with?

626


What is calloc in c?

652


write a programe to accept any two number and check the following condition using goto state ment.if a>b,print a & find whether it is even or odd and then print.and a

1445


What is a structural principle?

633


Is it possible to execute code even after the program exits the main() function?

801


Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)

5784


provide an example of the Group by clause, when would you use this clause

1698


What is a string?

658


how to count no of words,characters,lines in a paragraph.

3892