#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;
}
What is difference between inheritance and polymorphism?
Why is object oriented programming so hard?
what is virtual function in c++
why c++ is called OOPS? waht is inherutance? what is compiler?
why c++ is a highlevel language
3 Answers Satyam, Tech Mahindra,
What is the difference between procedural programming and oops?
What are virtual classes?
how many types of notations are in java
1 Answers National University of Modern Languages (NUML),
The expansion of GNU
1. Strong name 2. how to prevent a class from being inherited 3. delegates 4. default modifier for interface 5. default modifier for class 6. base class for exception 7. diff bet trigger and view in sql 8. how to exchange values from one page to another page 9. can multiple catch block ll be executed at same time 10. can u store different data types in an array & array list 11. when we ll use trigger 12. try,catch,finally usage
what is cast operator?
difine hierarchical inheritance.