!   Logical Operators in C,Logical NOT Operator. It is used to reverse the logical state of its operand. If a condition is true, then Logical NOT operator will make it false.

C Programming Language / Operators and Enums in C Language

1231

Program:

#include"stdio.h"
void main() {

   int a = 0;
   int b = 0;
   
    if ( !(a && b) ) {
      printf(" Condition is true\n" );
   }
}

Output:

 Condition is true
Press any key to continue . . .

This Particular section is dedicated to Programs only. If you want learn more about C Programming Language. Then you can visit below links to get more depth on this subject.