0
I have a code here, and I need to put several conditions within an IF.
In case I need to put it that way:
if (X->meia != 's' || X->meia != 'S' || X->meia != 'N' || X->meia != 'n')
{
printf("\nDigite S ou N!!\n");
}
But that way the condition is not working. How do I?