Advertisement
Guest User

Untitled

a guest
Aug 4th, 2015
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main {
  6. struct {int x, y; char tag;} point1, point2;
  7. point1.x = 1; point1.y = 3; point1.tag = 'A';
  8. point2.x = 4; point2.y = 7; point1.tag = 'B';
  9.  
  10. return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement