Why do we use the using declaration?
No Answer is Posted For this Question
Be the First to Post Answer
Does improper inheritance have a potential to wreck a project?
What is array give example?
How many types of casting are there in C++? When is a dynamic cast,static_cast,reinterpret cast used?
Write about the role of c++ in the tradeoff of safety vs. Usability?
What is a storage class in C++
What do you mean by enumerated data type?
Explain virtual class and friend class.
What is the difference between the parameter to a template and the parameter to a function?
Explain how overloading takes place in c++?
Given the following function definition: int doit(int &x, int y, int &z) { x = 3*x; y = y + 5; z = x+y; return z - 4; } int a = 5, b = 7, c = 9, d = 11; d = doit(a,b,c);
How do you add an element to a set in c++?
what is the emaning of '#include" "'?