! 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
1280Program:
#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.
# C Tutorials
# JAVA Tutorials
# HTML Tutorials
# Computer Fundamental
# Data Structure
# DBMS Tutorials
SQL
# C# Language
# R Language
# PHP
# Python
# Vue JS