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 function to call to turn an ascii string into a long?
When do you call copy constructors?
Why cout is used in c++?
Which is better c++ or java?
You have to take 2 arrays of length 10. Input the values of array 1 from the user. Then copy the values of array 1 to array 2 in ascending order For example if user enters 9, 5, 6, 8, 1, 0, 2, 7, 4, 3 then copy the smallest element i.e. 0 first followed by 1, 2 and so
Explain the concept of friend function in c++?
Explain queue. How it can be implemented?
Explain the ISA and HASA class relationships. How would you implement each in a class design?
If dog is a friend of boy, is boy a friend of dog?
What is meant by the term name mangling in c++?
Is c++ still in demand?
What is the use of vtable?