Can I learn c++ as my first language?
No Answer is Posted For this Question
Be the First to Post Answer
Explain object slicing in c++?
Which is best ide for c++?
What is an opaque pointer?
Explain the use of this pointer?
Explain the benefits of proper inheritance.
Is dev c++ a good compiler?
What is the difference between while and do while loop? Explain with examples.
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.
How size of a class can be calulated?
Are vectors passed by reference c++?
Explain the difference between using macro and inline functions?
What is a friend function in c++?