#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;
}
Answer Posted / tiger
23
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What are oops methods?
What does sksksk mean in text slang?
What is byval and byref? What are differences between them?
What is polymorphism what are the different types of polymorphism?
What are the advantages of polymorphism?
2. Give the different notations for the class.\
Why is polymorphism needed?
What is interface? When and where is it used?
what is the drawback of classical methods in oops?
Are polymorphisms mutations?
What is class encapsulation?
What is polymorphism and why is it important?
What is debug class?what is trace class? What differences are between them? With examples.
which feature are not hold visual basic of oop?
to find out the minimum of two integer number of two different classes using friend function