Advertisement
Guest User

Fofoaliii

a guest
Mar 24th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. Quation 1:
  2.  
  3. answer of # 1 :
  4. struct point {float x ; float y ; };
  5.  
  6.  
  7. answer of # 2 :
  8. typdef struct {int x ; int y ; }point ;
  9.  
  10.  
  11. answer of # 3 :
  12. struct point {int x; int y }p;
  13. struct point parr [10] ;
  14.  
  15.  
  16. answer of # 4 :
  17. struct point {int x; int y };
  18. struct point parr [10] ;
  19.  
  20.  
  21. answer of # 5 :
  22.  
  23. enum OsType {osandroid , oswindows , orios};
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement