What are the benefits of oop?
No Answer is Posted For this Question
Be the First to Post Answer
#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
What is difference between oop and pop?
create a class complex having real and imaginary part of a complex no. as a data member. overload the binary operators(+,- and *) to perform the operations on complex no. objects. overload binary operator using friend function.
2 Answers CTS, Delhi University,
What are the data types in oop?
What does enum stand for?
what is the need of abstraction? what is abstraction?what is the abstraction for stack?
What are the main differences between procedure oriented languages and object oriented languages?
9 Answers IBM, Infosys, Wipro,
Can we call a base class method without creating instance?
write a program to find the largest of two numbers without using for,while,switch,if else, conditional operator and do while using c++ pgmng language
Where is pseudocode used?
What is inheritance write a program to show use of inheritance?
write a c++ code of diagonal matrix.