When does a 'this' pointer get created?
Is c++ a pure oop language?
Comment on local and global scope of a variable.
What is the purpose of extern storage specifier?
Can we use clrscr in c++?
Can malloc be used in c++?
What is std namespace in c++?
i have given a project to create examination seating plan system in c++. so can anyone send me the answer of this question quickly??????
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.
What is the use of data hiding?
What is the difference in size of this two clasees? Class A { int a; char c; float f; } Class B { float f; char c; int a; }
What is the copy-and-swap idiom?
How to construct muliton object