Advertisement
NaZaRa

Untitled

Jan 18th, 2019
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.42 KB | None | 0 0
  1. typedef struct point{
  2.     int    x;
  3.     int    y;
  4. } point;
  5.      
  6. typedef struct {
  7.     int    x;
  8.     int    y;
  9. } point2;
  10.  
  11. typedef struct point3 {
  12.     int    x;
  13.     int    y;
  14. };
  15.      
  16. typedef struct {
  17.     int    x;
  18.     int    y;
  19. };
  20.      
  21. struct {
  22.     int    x;
  23.     int    y;
  24. } point4;
  25.  
  26. struct point5 {
  27.     int    x;
  28.     int    y;
  29. } ;
  30.  
  31. // "point6"
  32. struct {
  33.     int    x;
  34.     int    y;
  35. };
  36.  
  37. struct point7 {
  38.     int    x;
  39.     int    y;
  40. } point7;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement