#ifndef _LALUNOS #define _LALUNOS #define NALUNOS 100 typedef struct sAluno { int num; char nome[60]; int notas [10]; } Aluno, LAluno[NALUNOS]; int inserir( Aluno a, LAluno t, int *c, int ord[], int *l); int lista( LAluno t, int c, int ord[] ); #endif