Horje
Logical Operator in C language Code Example
Logical Operator in C language
#include<stdio.h>
int main(){
  A = 5;
  B = 10;
if((A == 5) && (B < 11)){
 printf(“Both conditions are ture”);
}

if(!(A==5)){
 printf(“A is not equal to 5”);
}

if((A>=3) ||(B<=9)){
 printf(“min any one condition is true”);
}

}




C

Related
what is the use of malloc in c Code Example what is the use of malloc in c Code Example
brainfuck programming language Code Example brainfuck programming language Code Example
Iterating through a linked list Code Example Iterating through a linked list Code Example
C malloc Code Example C malloc Code Example
online c compiler with mpi Code Example online c compiler with mpi Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9