⟩ When we use this pointer?
'this pointer' is used as a pointer to the class object instance by the member function. The address of the class instance is passed as an implicit parameter to the member functions.
'this pointer' is used as a pointer to the class object instance by the member function. The address of the class instance is passed as an implicit parameter to the member functions.
What are mandatory parts in function declaration? a) return type,function name b) return type,function name,parameters c) both a and b d) none of the mentioned
The number of lines that exit an input in the flowchart?
In which part of the for loop termination condition is checked? for(i;ii;iii) {iv}
Where does the execution of the program starts? a) user-defined function b) main function c) void function d) none of the mentioned
Explain void free (void* ptr)?
Explain me what is an Object/Instance?
Tell me how to create a pure virtual function?
Tell me what will the line of code below print out and why?
Tell me does an abstract class in C++ need to hold all pure virtual functions?
Tell me is it possible to get the source code back from binary file?