Explain virtual class?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the difference between 'operator new' and the 'new' operator?
Draw a flow chart and write a program for the difference between the sum of elements with odd and even numbers. Two dimensional array.
What are all predefined data types in c++?
List out function which we can call without using object
Write a program to concatenate two strings.
if there is binary tree which one is the easiest way to delete all child node?
Is there anything you can do in C++ that you cannot do in C?
Is there any difference between dlearations int* x and int *x? If so tell me the difference?
What are the various situations where a copy constructor is invoked?
Can we use struct in c++?
Explain operator overloading.
int main() { int i ,a[i]; i = 0; a[i] = 10; cout<< a[i] << endl; return 0; } What will be output of this program?