Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

#include<stdio.h> #include<stdlib.h> #include<string.

h> #define Num_Alunos 20 struct aluno{ char nome[50]; float nota1, nota2, media; char condicao[10]; } Turma_Alunos[Num_Alunos];

You might also like