Write a C++ program which should show the constructor overloading
#include #include #include class abc { private: int n; public: abc() { n=0; } abc(int x) { n=x; } void getdata() { cout<<"Enter the no:"; cin>>n; } void show() { cout<<"\n"<<"Sum is: "<