Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- struct point {
- double x, y;
- point(){ // empty constructor / default constructor
- x = 0;
- y = 0;
- }
- point(double _x, double _y) { // parameterized constructor
- x = _x;
- y = _y;
- }
- };
- int main() {
- point p(30, 20);
- cout << p.x << " " << p.y << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement