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 c easier than java?
What is #include stdio h?
How to create struct variables?
Write a program to print ASCII code for a given digit.
What is call by reference in functions?
How are Structure passing and returning implemented by the complier?
What is an identifier?
why return type of main is not necessary in linux
What does the characters “r” and “w” mean when writing programs that will make use of files?
What is a shell structure examples?
Who invented b language?
Why pointers are used?
Write a program to know whether the input number is an armstrong number.
Which is the best website to learn c programming?
What is the difference between declaring a variable and defining a variable?