#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;
}
When is a memory allocated to a class?
What is the difference between class and object?
what type of questions
What is the point of polymorphism?
What are the benefits of interface?
Is oop better than procedural?
4. What do you mean by a prototype? Define analysis prototype
create a c++ program that will ask 10 numbers and display their sum using array.
What is virtual class and friend class?
what is the difference between a package and a software?
i got a backdoor offer in process global,Bangalore..Can i work with it?
In which cases you use override and new base?