Quote:
Originally Posted by zanara
I am a newbie and have little knowlege about programming. I do not understand the role of the logical operators-AND-OR NOT C, and how are they used? Looking forward to your response!
|
I guess what he meant was the AND, OR, and NOT boolean operators. Your question was really confusing at first. I am also a newbie in C but this stuff is quite basic. AND returns true only if both operands are true. OR returns true if one of the operand is true. NOT converts true to false and false to true.