What is the use of ‘using’ declaration?
Answer / beena
A using declaration makes it possible to use a name from a namespace without the scope operator.
Is This Answer Correct ? | 0 Yes | 0 No |
What is the difference between #import and #include?
What about Virtual Destructor?
Write a program to find the Fibonacci series recursively.
In int main(int argc, char *argv[]) what is argv[0] a) The first argument passed into the program b) The program name c) You can't define main like that
What compiler was used?
What are different types of polymorphism supported by C++
If there are 1 to 100 Numbers in array of 101 elements. Which is the easy way to find repeated number?
How many ways are there to initialize an int with a constant?
What is ios class in c++?
What does getch() do according to the ANSI C++ standard a) Reads in a character b) Checks the keyboard buffer c) Nothing in particular (Its not defined there)
How a pointer differs from a reference?
When there is a global variable and local variable with the same name, how will you access the global variable?