#include <iostream>
using namespace std;
struct wow {
int x;
};
int main() {
wow a;
wow *b;
a.x = 22;
b = &a;
a.x = 23;
cout << b->x;
return 0;
}
Can enum be null?
what is overloading
how to tackle technical questions
Why do we use polymorphism?
Base class has two public data members. How can i derive a new class with one datamember as public and another data member as private?.
Explain virtual inheritance?
What is DeadlyDiamondDeathProblem ?
What is class and object in oops?
function overridind means and simple program
What is abstraction in oops with example?
how to get the oracle certification? send me the answer
to find out the minimum of two integer number of two different classes using friend function