What is class in oop with example?
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference between function template and template of function?explain with example.
what are the realtime excercises in C++?
design class for linked list and include constructor,destructor,insert option. node of form struct node { int data; struct node &ptr; }
what is a binary overloading
How do you explain polymorphism?
what is function overloading..?
What is the oops and benefits of oops programming?
There are 2 empty jars of 5 and 3 liters capacity. And a river is flowing besides. I want to measure 4 liters of wanter using these 2 jars. How do you do this?
what are abstract classes and how they impliment , with example
What do you mean by inline function?
#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 the difference between virtual function and destoctor?