How would you do in this code to get the person's gender and display in printf()
?
I've seen a lot of activities in the condition of if
, if you used too many numbers and hit me a question: What if it was with letters?
#include <stdio.h>
#include <string.h>
int main()
{
char sex[5], nome[200], f, m;
printf("\n Digite o seu nome: " ); //pegar o nome da pessoa
scanf(" %[^\n]s", &nome);
printf("\n Digite seu sexo f ou m: "); //pegar o sexo da pessoa
scanf("%s", &sex);
if(sex == m)
{
printf(" bem vindo Senhor %s\n", nome); // se for homem
}
if (sex == f)
{
printf(" Bem vinda Senhora %s\n", nome); // sefor mulher
}
else
{
printf("\n ERRO! \n");
}
getchar();
return 0;
}