#include <iostream>
using namespace std;
struct wow {
int x;
};
int main() {
wow a;
a.x = 22;
int c = a.x;
int *b = new int;
cout << c;
return 0;
}
option:
No output
0
22
-(11)
Will not compile
143.what is oops principles?
Have you ever interfaced with a database?
Why is polymorphism needed?
Difference between realloc() and free?
Write A Program to find the ambiguities in Multiple Inheritance? How are they resolved.(Virtual Functions)
What does oop mean in snapchat?
What is overriding vs overloading?
How is exception handling carried out in c++?
1. Wrie a function which returns the most frequent number in a list of integers. Handle the case of more than one number which meets this criterion. public static int[] GetFrequency(int[] list)
What is the difference between the c++ & java?
2. Give the different notations for the class.\
Can private class be inherited?