How would one express the logic "NOR" in C programing?

Recommended Answers

All 2 Replies

You can do this !( a || b); That is Not ( A or B ).
For bitwise use tilde ~, example ~(a | b);

thank you that seems to be working

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.