Why is oop better than procedural?
No Answer is Posted For this Question
Be the First to Post Answer
What is constructor in oop?
what is multithreading in c++ , what is difference between multithreading and singlethreading.
write a short note on Overloading of Binary Operator?
What is difference between multiple inheritance and multilevel inheritance?
What is deep and shalow copy?
Get me an image implementation program.
How to overload new operator in c++
i have to create a view in SQL as like in ORACLE DATA EXPRESS EDITION
Generally, in all C++ programs, texts are in white colour. Can we change the colour of the text(either input or output or both)? If so, help me out.
#include <iostream> using namespace std; int main() { int a = 3; 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][2]; }
what is costructor?
write string class as your own class in java without using any built-in function