Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. Tipul struct la examenul de bacalaureat
  2.  
  3. Varianta 1
  4. struct punct
  5. {
  6. float x,y;
  7. };
  8. punct A,B,C;
  9.  
  10. Varianta 2
  11.  
  12. struct punct
  13. {
  14. float x,y;
  15. };
  16.  
  17. struct punct A,B,C;
  18.  
  19. Varianta 3
  20.  
  21. struct punct
  22. {
  23. float x,y;
  24. } A,B,C;
  25.  
  26. Varianta 4
  27.  
  28. struct
  29. {
  30. float x,y;
  31. } A,B,C;
  32.  
  33. EX:
  34. struct
  35. {
  36. char nume[21];
  37. struct
  38. {
  39. int zi,luna,an;
  40. } dn;
  41. float mg;
  42. }E;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement