Guest User

Untitled

a guest
Jun 24th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.39 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. #define dim 20
  5. typedef struct{
  6.         char cognome[16];
  7.         char nome[12];
  8.         int stipAnnuo;
  9.         }dipendente;
  10. void StampaFile(FILE*out);
  11. void CopiaInVettore(FILE*out,dipendente dip[],int*);
  12. void StampaVettore(dipendente dip[],int);
  13. int RicercaBinaria(dipendente dip[],int);
  14. void StampaTrovato(dipendente dip[],int);
Add Comment
Please, Sign In to add comment