The function switch
and I do not know what I'm doing wrong I want to put the name marcos
ai appear "marks and legal" and put murilo
"murilo e bacana". I'm doing this:
#include <stdio.h>
#include <conio.h>
int main(void)
{
char marcos;
printf("Digite um nome e veja? ");
scanf("%s",&nome);
switch (nome)
{
case 'marcos' :
printf("Marcos e legal");
break;
case 'murilo':
printf("Murilo e bacana");
break;
default:
printf("errado");
getch();
return 0;
}
}