Hello friends, Welcome to your Techgsr.co blog. And today in this article we will learn about how to write a program in c++ to show constructor .So let’s go to our topic
#include<iostream> using namespace std; class Point { private: int x, y; public: /***Constructor****/ Point(int x1, int y1) { x = x1; y = y1; } int getX() { return x; } int getY() { return y; } }; int main() { Point p1(10, 15); // constructor is called here // Let us access values assigned by constructor cout << “p1.x = ” << p1.getX() << “, p1.y = ” << p1.getY(); return 0; }
Output:
p1.x = 10, p1.y = 15
Related Post:-
So I hope that you learn about the this program And if you have any more queries about progrmming ,web Devlopment ,tech,computer relegated then feel free to discuss your problem in the comment section.Thank you so much and come back for more updates about Techgsr.co