What is the use of 'this' pointer?
No Answer is Posted For this Question
Be the First to Post Answer
What can I safely assume about the initial values of variables which are not explicitly initialized?
What are references in c++?
What do you understand by a pure virtual member function?
int main() { int i ,a[i]; i = 0; a[i] = 10; cout<< a[i] << endl; return 0; } What will be output of this program?
Evaluate the following expression as C++ would do :8 * 9 + 2 * 5 a) 82 b) 79 c) 370 d) list
Is dev c++ a good compiler?
Differentiate between declaration and definition.
int age=35; if(age>80) {Console.WriteLine("Boy you are old");} else {Console.WrieLine("That is a good age");}
What is difference between c++ 11 and c++ 14?
Write a short code using c++ to print out all odd number from 1 to 100 using a for loop
What are the five types of inheritance in C++?
Explain terminate() function?