Advertisement
Guest User

Untitled

a guest
Oct 1st, 2016
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. #include <stdio.h>
  2. #include "circulo.h"
  3.  
  4. int main(int argc, char *argv[]) {
  5.  
  6. Circulo* c = cir_cria (2.0, 1.0, 3.0);
  7.  
  8. float d = cir_area (c);
  9. printf("pontos: %f", d);
  10.  
  11. cir_libera (c);
  12. cir_libera (d);
  13. return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement