Why is there no multiple inheritance?
No Answer is Posted For this Question
Be the First to Post Answer
create a c++ program that will ask 10 numbers and display their sum using array.
Can java compiler skips any statement during compilation time?
Can we create object of abstract class?
What is oop in simple words?
What is abstract class in oop?
write a c++ code of diagonal matrix.
What is basic concept of oop?
What does oop mean in snapchat?
the difference between new and malloc
Why is polymorphism needed?
which are the 4 members functions in c++ objects that can either be declared explicitly by programmer or implementation if nt available.
#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