Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. typedef struct Deltoid{
  2.  
  3. double a,b;
  4.  
  5. };
  6.  
  7. double area(struct Deltoid s){
  8.  
  9. double pole;
  10. s.a=10;
  11. s.b=10;
  12. pole=((s.a*s.b)/2);
  13.  
  14. printf("Pole wynosi %f",pole);
  15.  
  16. return pole;
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement