When does a 'this' pointer get created?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

Is c++ a pure oop language?

0 Answers  


Comment on local and global scope of a variable.

0 Answers  


What is the purpose of extern storage specifier?

0 Answers  


Can we use clrscr in c++?

0 Answers  


Can malloc be used in c++?

0 Answers  


What is std namespace in c++?

0 Answers  


i have given a project to create examination seating plan system in c++. so can anyone send me the answer of this question quickly??????

1 Answers  


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.

2 Answers   Quark,


What is the use of data hiding?

0 Answers  


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; }

4 Answers  


What is the copy-and-swap idiom?

0 Answers  


How to construct muliton object

2 Answers   Symphony, TCS,


Categories