Can private class be inherited?
No Answer is Posted For this Question
Be the First to Post Answer
Why is static class not inherited?
what are the disadvantages of C++?
25 Answers ATS, Infosys, UNI, Wipro,
what is a class
#include <iostream> using namespace std; int main() { int a = 2; int c[5][5]; for (int x=0;x<5;x++) { for (int y=0;y<5;y++) { c[x][y] = x*y; } } cout << c[a][c[1][4]]; }
What is constructor overloading in oop?
What is the point of oop?
20% of a 6 litre solution and 60% of 4 litre solution are mixed what the % of mixture of solution it is resulted into?
what is overloading and overriding?
What is a function in oop?
What is the difference between an object and a class?
What is the difference between declaration and definition?
Which is faster post increment or pre increment ? and in which cases should u use either - to increase speed?