How could I print the variable sex out of if-else
(it has to be OUT of it).
This code is printing blank and I can not understand why.
#include <stdio.h>
#include <stdlib.h>
#include <locale.h>
#include <string.h>
int main(void)
{
setlocale(LC_ALL, "Portuguese");//habilita a acentuação para o português!
int escolha;
char sexo;
printf("Escolha uma das opções abaixo: ");
printf("\n1- Sou mulher ");
printf("\n2- Sou homem ");
scanf("%d", escolha);
if(escolha==1){
char sexo[]="Feminino";
}
else{
char sexo[]="Masculino";
}
printf("Você é do sexo: ");
printf(sexo);
return 0;
}