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 what is wrong with this program statement?
Why void is used in c?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
Explain the advantages and disadvantages of macros.
Why do we use stdio h and conio h?
What are the benefits of organizational structure?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
Explain enumerated types in c language?
What is wrong with this program statement? void = 10;
What is boolean in c?
What is keyword with example?
How can I do peek and poke in c?
Which is the memory area not included in C program? give the reason
Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250
What is the importance of c in your views?