Constructor that accepts arguments are known as parameterized constructors. There may be situations, where it is necessary to initialize various data elements of different objects with different values when they are created. This objective can be achieved through parameterized constructors. 

#include<iostream.h>
#include<conio.h>
class A{
	int x;
	int y;
	public:
		A(int i , int j){
			x=i;
			y=j;
		}
		void display(){
			cout<<x<<" "<<y<<endl;
		}
};

void main(){
	A obj(5,6);
        clrscr();
	obj.display();
        getch();
}



String reverse using operator overloading
String concat using operator overloading
Multilevel Inheritance in C++
Single level Inheritance
Overloading Constructors / Multiple Constructors in C++
Destructors in C++
Copy Constructor in C++
Parameterized constructor in C++
Default constructor in C++
Initialization of class member and display on screen