-1
I’m with a struct to receive data in char
and float
, but when will I enter data in the first char
with fgets
he won’t let me type and already jumps to my second fgets
int ex22()
{
struct cadastro
{
char nome[50];
char disciplina[30];
float nota_1;
float nota_2;
};
struct cadastro aluno;
//Nesse primeiro fgets eu não consigo inserir o nome do aluno, ele já pula para disciplina
printf("\nNome do aluno: ");
fflush(stdin);
fgets(aluno.nome,50,stdin);
printf("\nDisciplina: ");
fflush(stdin);
fgets(aluno.disciplina, 30, stdin);
printf("\ndigite nota1: ");
scanf("%f", &aluno.nota_1);
printf("\nDigite nota2: ");
scanf("%f", &aluno.nota_2);
printf("\n----------------Aluno cadastrado---------------\n\n\n");
printf("\nNome: %s\n", aluno.nome);
printf("\ndisciplina: %s\n", aluno.disciplina);
printf("\nnota_1: %.1f\n", aluno.nota_1);
printf("\nnota_2: %.1f\n", aluno.nota_2);
system("pause");
return (0);
}
Are you sure you are
c#
?– tvdias