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