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
- x = 0;
- y = 0;
- }
- };
- int main() {
- point p;
- cout << p.x << " " << p.y << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement