What is the meaning When we write "#include" what is # and
what does include does there???
Answer Posted / ankit
This is called Preprocessor directive - tells computer to load contents of a certain file. <stdio.h> allows
standard input/output operations to be loaded in the program. <conio.h> is for the clearing the screen.
The functions such as printf() and scanf() are defined in <stdio.h>. The functions clrscr() and getch() are
defined in <conio.h>
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How can you determine the maximum value that a numeric variable can hold?
Where does the name "C" come from, anyway?
What is calloc malloc realloc in c?
Explain what are multidimensional arrays?
Explain what is a 'locale'?
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
What is string length in c?
what is the difference between class and unio?
Explain what are reserved words?
What is openmp in c?
What header files do I need in order to define the standard library functions I use?
Is array a primitive data type in c?
Why c is a procedural language?
What is variable in c example?
Why is a semicolon (;) put at the end of every program statement?