Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #ifndef __OK_H
- #define __OK_H
- typedef struct persona persona;
- typedef struct studente studente;
- typedef struct lavoratore lavoratore;
- typedef struct azienda azienda;
- struct persona{
- int eta;
- char nome[32];
- char cognome[32];
- };
- struct studente{
- persona tizio;
- char matricola[32];
- float media_voti;
- };
- struct lavoratore{
- persona tizio;
- char mansione[32];
- float salario;
- };
- struct azienda{
- lavoratore worker[32];
- studente tirocinante[32];
- char titolo[32];
- };
- studente *setStudentIdentity(char *nome, char *cognome, int eta, char *matricola, float media);
- lavoratore *setWorkerIdentity(char *nome, char *cognome, int eta, char *mansione, float salario);
- azienda *setAzienda(char *titolo);
- void *setIdentity(int tipo, char *nome, char *cognome, int eta);
- #endif // __OK_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement