struct ALUNOS{
char nome[50];
float nota1, nota2;
}aluno;
void cadastra(){
FILE *arquivo;
ALUNOS aluno;
char resp, numstr[40];
arquivo = fopen("alunoscad.txt","wt");
if (arquivo == NULL){
printf("\n Erro abertura!");
exit(1);
}
do{
printf("\n Nome: ");
gets(aluno.nome);
printf("\n Nota 1: ");
gets(numstr);
aluno.nota1 = atof(numstr);
printf("\n Nota 2: ");
gets(numstr);
aluno.nota2 = atof(numstr);
fprintf(arquivo,"%s",aluno.nome);
fprintf(arquivo,"\n%.2f",aluno.nota1);
fprintf(arquivo,"\n%.2f\n",aluno.nota2);
printf("\n Deseja cadastrar mais? \n");
do {
resp = toupper(getch());
} while (resp != 'S' && resp != 'N');
}while(resp=='S');
fclose(arquivo);
}
void mostra (){
FILE *arquivo;
ALUNOS aluno;
char ch;
int achou = 0;
if ((arquivo = fopen("alunoscad.txt", "rt")) == NULL){
printf("\n Erro abertura");
exit(1);
}
while ((ch = getc(arquivo)) !=EOF){
fgets()
}
fclose (arquivo);
}
int main(){
cadastra();
mostra();
}
This is all my code