What is the best c++ compiler?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of setprecision in c++?
Why do we need c++?
What is token c++?
What are the basics concepts of OOPS?
What is code reusability in c++?
Snake Game: This is normal snake game which you can find in most of the mobiles. You can develop it in Java, C/C++, C# or what ever language you know.
What is a down cast?
What are different types of typecasting supported by C++
When to use “const” reference arguments in a function?
What is difference between initialization and assignment?
12 Answers HCL, HP, Infosys,
Write a corrected statement in c++ so that the statement will work properly. if (x = y) x = 2*z;
catch(exception &e) { . . . } Referring to the sample code above, which one of the following lines of code produces a written description of the type of exception that "e" refers to? a) cout << e.type(); b) cout << e.name(); c) cout << typeid(e).name(); d) cout << e.what(); e) cout << e;