what is the emaning of '#include" "'?
Answers were Sorted based on User's Feedback
Answer / angad kumar
'# INCLUDE " "' IS THE PREPROCESSOR DIRECTIVES It creates a
link to the library stdio.h and <iostream.h >.
| Is This Answer Correct ? | 23 Yes | 3 No |
Answer / guna
This is the header file of the C program..Another name is
documentation session.
| Is This Answer Correct ? | 10 Yes | 6 No |
Answer / shahid
This is header file that can be use in c or c++ programming
language.
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / nayer plame
#include" ", as a preprocessor command, tries to a include
(simple text insertion) of a file named " "
if the blank between the two quotes is unintentional then
#include "" includes a file that is located in the same
directory as the file with the include command
if the single quotes around the include-command are
intentional, then is line would result in a syntax error
| Is This Answer Correct ? | 0 Yes | 1 No |
What is the keyword auto for?
Can member functions be private?
What is the use of map in c++?
When the constructor of a base class calls a virtual function, why doesn't the override function of the derived class gets called?
Define a constructor - what it is and how it might be called (2 methods)?
Can a list of string be stored within a two dimensional array?
Will this c++ program execute or not?
Which bit wise operator is suitable for turning off a particular bit in a number?
List the types of polymorphism in c++?
What is size of Empty Class?
What is the difference between an external iterator and an internal iterator? Describe an advantage of the external iterator.
Can I have a reference as a data member of a class? If yes, then how do I initialise it?