What is this pointer in c++?
Every object in C++ has access to its own address through an important pointer called this pointer. The this pointer is an implicit parameter to all member functions. Therefore, inside a member function, this may be used to refer to the invoking object. ... Only member functions have a this pointer.
| Is This Answer Correct ? | 0 Yes | 0 No |
What does h mean in maths?
What is the full form of c++?
Which of the following is not a valid declaration for main() a) int main() b) int main(int argc, char *argv[]) c) They both work
what do you mean by volatile variable?
Check for Balanced Parentheses using Stack?
How can you differentiate between inheritance and implementation in c++?
What is the difference between C and CPP?
What is meant by forward referencing and when should it be used?
How to create a reference variable in C++
what is the behaviour of C and C++ compiler for the below statements. int *p; p = malloc(100); Is the behaviour same ? or different ?
Why are pointers not used in c++?
What programming language should I learn first?