What is the meaning When we write "#include" what is # and
what does include does there???
Answer Posted / singaravel
# work as a preprocessor when include is used for to connect
the header file to the complier, we want to write
#include"stdio.h" or <stdio.h> because c has no built-in
function to run the program.like wise we include "conio.h"
which is used for link the clrscr()and getch(),but it is not
so important because we can run the program without using
clrscr() and getch() from the header file "conio.h" but we
never run the program without using <stdio.h>
| Is This Answer Correct ? | 41 Yes | 17 No |
Post New Answer View All Answers
Is javascript based on c?
Explain the difference between strcpy() and memcpy() function?
How do you view the path?
What is an lvalue?
how do you execute a c program in unix.
What is 1f in c?
How many keywords are there in c?
Is array name a pointer?
Can we change the value of constant variable in c?
What are identifiers in c?
All technical questions
What is the sizeof () a pointer?
How do you override a defined macro?
How do I use void main?
What is a far pointer in c?