Why is c++ still best?
No Answer is Posted For this Question
Be the First to Post Answer
What is a Default constructor?
Explain how we implement exception handling in c++?
class X { public: int x; static void f(int z); }; void X::f(int y) {x=y;} What is the error in the sample code above? a) The class X does not have any protected members. b) The static member function f() accesses the non-static z. c) The static member function f() accesses the non-static x. d) The member function f() must return a value. e) The class X does not have any private members.
Evaluate the following expression as C++ would do :8 * 9 + 2 * 5 a) 82 b) 79 c) 370 d) list
Difference between pointer to constant and constant pointer to a constant. Give example.
Do class declarations end with a semicolon?
What is null pointer and void pointer and what is their use?
By using c++ with an example describe linked list?
what is pulse code modulation?
What is the size of integer variable?
What is unary operator? List out the different operators involved in the unary operator.
How do you save a c++ program?