C++.Parameterised Constructor Program

 


#include <iostream>

using namespace std;


class show

{

    public:

    show(int a,int b)

    {

        int c;

        c=a+b;

        cout<<c;

    }

};


int main()

{

    show ob(10,20);

    return 0;

}

Comments