O NOME ELE ESTA MOSTRANDO CORRETAMENTE, PORÉM CPF E SEXO ESTÁ VÁRIOS NÚMEROS ALEATÓRIOS.QUAL SERIA O ERRO ? OBRIGADO!
#include <stdio.h>
#include <string.h>
struct ficha
{
char nome[20];
char sexo[20];
int cpf[20];
}dados;
int main()
{
struct ficha infoend;
int i;
printf("digite o nome\n");
scanf("%s", &infoend.nome);
printf("digite o sexo\n");
scanf("%s", &infoend.sexo);
printf("digite o cpf\n");
scanf("%i", &infoend.cpf);
printf("NOME = %s\nSEXO = %i\nCPF = %i\n",infoend.nome,infoend.sexo,infoend.cpf);
}
Pergunta
Hiago Pinazzi
Link para o comentário
Compartilhar em outros sites
1 resposta a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.