What does I oop mean?
No Answer is Posted For this Question
Be the First to Post Answer
What is ambiguity in c++
What is the difference between static polymorphism and dynamic polymorphism?
What does the keyword "static" mean?
Explain polymorphism? What r the types of polymorphism? pls give examples?
What is an object?
Why u change company?
What is abstraction in oop?
What is difference between oop and pop?
What do you mean by variable?
oops concept is used for?
Difference between over loading and over ridding?
12 Answers CTS, Patni, Softvision Solution,
#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