if (A !=1 || A!=2){
printf(foobar);
}
After you changed your question, the answer would be…
if (A !=1 && A!=2) {
printf(foobar);
}
5
solved C how to make it so that if something is not equal do this [closed]
if (A !=1 || A!=2){
printf(foobar);
}
After you changed your question, the answer would be…
if (A !=1 && A!=2) {
printf(foobar);
}
5
solved C how to make it so that if something is not equal do this [closed]