-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
48 lines (43 loc) · 838 Bytes
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
//Sistema de correção de gabaritos.
//Autores: Allan Schuh, Gustavo Roos, Gustavo Souza e João Victor.
*/
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<locale.h>
#include"func.h"
int main()
{
int op;
setlocale(LC_ALL, "");
Primeira_Execucao();
Size();
ponteiro_gabarito = (gabarito *)malloc(SIZE_GAB * sizeof(gabarito));
ponteiro_aluno = (aluno *)malloc(SIZE_ALU * sizeof(aluno));
Lista_Gabaritos = Carrega_Gabaritos();
Lista_Alunos = Carrega_Alunos();
for(;;)
{
op = menu();
switch (op)
{
case 1:
Cadastrar();
break;
case 2:
Mostrar();
break;
case 3:
Excluir();
break;
case 4:
Sobre();
break;
case 0:
exit(0);
break;
}
}
return 0;
}