I need to find out if each element in a linked list is a vowel or not.
How can I fix my code?
int BuscaNv(LISTA* resp){
NO* atual = resp->inicio;
while(atual){
if(atual->letra == 'a' || 'e' || 'i' || 'o' || 'u'){
printf("É vogal\n");
atual = atual->prox;
}
else{
printf("Não é vogal\n");
atual = atual->prox;
}
}
return 0;
}
Typedefs:
typedef struct estr {
char letra;
struct estr *prox;
} NO;
typedef struct {
NO *inicio;
} LISTA;