Advertisement
Sam-Sampaio

struct.h

Feb 27th, 2020
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.25 KB | None | 0 0
  1. struct n_produto
  2. {
  3.     char nome[150];
  4.     float valorV;
  5.     float valorC;
  6.     int unidades;
  7. };
  8.  
  9. void menu(void);
  10. void opcao(void);
  11. void registrar_dados(struct n_produto *newp, size_t qtd);
  12. void listar_dados(struct n_produto *newp, size_t qtd);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement