Who invented oop?
No Answer is Posted For this Question
Be the First to Post Answer
c++ is a purely oop concept?
what is the technical or oop name of object?
IS IT NECESSARY TO INITIALIZE VARIABLE? WHAT IF THE INSTANCE VARIABLE IS DECLARED final ? IS IT NECESSARY TO INITIALIZE THE final VARIABLE AT THE TIME OF THEIR DECLARATION?
What is encapsulation with real life example?
What is polymorphism and example?
What is difference between oop and pop?
is java purely oop Language?
49 Answers HCL, Infosys, TCS,
Round up a Decimal number in c++.. example Note = 3.5 is as 4 3.3 is as 3
3 Answers Accenture, Cognizant, IBM,
What is overriding in oops?
How to create a comment page in C #??
what is SPL in c++.
#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