Advertisement
emmit

agora

Dec 10th, 2014
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. # include <stdlib.h>
  2. # include <stdio.h>
  3.  
  4. struct cont{
  5.  
  6. int numero;
  7. char cliente[50];
  8. float saldo;
  9.  
  10. };
  11.  
  12. void armazenar(struct cont vet[]);
  13. int melhorCliente(struct cont vet[]);
  14. float soma(struct cont vet[]);
  15. float media(struct cont vet[]);
  16.  
  17. main(){
  18.  
  19. struct cont conta[3];
  20.  
  21.  
  22. void armazenar(conta);
  23.  
  24.  
  25.  
  26. system("pause");
  27. }
  28.  
  29.  
  30. void armazenar(struct cont vet[]){
  31.  
  32.  
  33.  
  34.  
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement