Pages
(Move to ...)
Home
Computer Science
Maths
Pedagogy and Teaching Methodology
GK and Current Affair
English
Our Apps
Books
Notification
▼
CLICK HERE TO JOIN US
Download and Install our Android App
Sunday, 25 April 2021
Dynamic object and Destructor calling in C++ Qus - 2
›
class A { public: A() { cout<<"C-A"<<endl; } ~A() { cout<<"D-A...
Dynamic Array in C++
›
#include<iostream.h> #include<conio.h> class A { public: A() { cout<<"C-A"<<endl; } void show() ...
Dynamic Memory Allocation for Variable and Class Object in C++
›
#include<iostream.h> #include<conio.h> class A { public: A() { cout<<"C-A"<<endl; } void show() ...
Dynamic Object and Destructor calling for Dynamic Object Qus - 1
›
#include<iostream.h> #include<conio.h> class A { public: A() { cout<<"C-A"<<endl; } void show() ...
Assign Multiple Values at a time in C/C++ Variable
›
#include<iostream.h> #include<conio.h> int main() { clrscr(); int a=(4,5,7); cout<<a<<endl; int b; b=(3,4,5); cout...
Hierarchical Inheritance in C++
›
#include<iostream.h> #include<conio.h> class A { public: int a,b; }; class B:A { public: B() { a=5; b=10; cout<<a+b<...
Friday, 23 April 2021
Scope Resolution Operator in C++ Qus: 4
›
#include<iostream.h> #include<conio.h> class A { public: int x; static int y; A() { x=5; y=10; } void show() { y=12; } static v...
Scope Resolution Operator in C++ Qus: 3
›
#include<iostream.h> #include<conio.h> class A { public: int x; static int y; A() { x=5; //y=10; } void show() { y=12; } }; int...
Scope Resolution Operator in C++ Qus: 2
›
#include<iostream.h> #include<conio.h> class A { public: int x; A() { x=10; } }; class B { public: int x; B() { x=5; } }; class...
Inheritance in C++ Qus: 5
›
#include<iostream.h> #include<conio.h> class A { public: A(int a) { cout<<"C-A="<<a<<endl; } }; cla...
‹
›
Home
View web version