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 programming language should I learn first?
What will happen if a pointer is deleted twice?
What is the keyword auto for?
Can manipulators fall in love?
How do you generate a random number in c++?
What is virtual base class?
What is polymorphism in c++? Explain with an example?
What are the comments in c++?
How do I run a program in notepad ++?
When is the copy constructor called?
class HasStatic { static int I; }; Referring to the sample code above, what is the appropriate method of defining the member variable "I", and assigning it the value 10, outside of the class declaration? a) HasStatic I = 10; b) int static I = 10; c) static I(10); d) static I = 10; e) int HasStatic::I = 10;
How long does this loop run: for(int x=0; x=3; x++) a) Never b) Three times c) Forever
17 Answers Datavance, Quark, VEL, Wipro,