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 basic difference between C and C++?
List different attributes in C++?
What will happen if I allocate memory using "new" and free it using "free" or allocate sing "calloc" and free it using "delete"?
What are the different types of comments allowed in c++?
What is a down cast?
Which of the Standard C++ casts can be used to perform a ?safe? downcast: a) reinterpret_cast b) dynamic_cast c) static_cast d) const_cast
How many bit combinations are there in a byte?
What are the different types of polymorphism in c++?
Explain the differences between private, public and protected and give examples.
If I is an integer variable, which is faster ++i or i++?
What is array in c++ pdf?
Can we generate a C++ source code from the binary file?