Computer Science, asked by AntonyAkash4163, 5 hours ago

write a c program to demonstrate logical operator

Answers

Answered by hibban4664
0

Answer:

hope it helps you mark m e the best

Explanation:

#include <stdio.h>

main() {

  int a = 5;

  int b = 20;

  int c ;

  if ( a && b ) {

     printf("Line 1 - Condition is true\n" );

  }

 

  if ( a || b ) {

     printf("Line 2 - Condition is true\n" );

  }

   

  /* lets change the value of  a and b */

  a = 0;

  b = 10;

 

  if ( a && b ) {

     printf("Line 3 - Condition is true\n" );

  } else {

     printf("Line 3 - Condition is not true\n" );

  }

 

  if ( !(a && b) ) {

     printf("Line 4 - Condition is true\n" );

  }

Similar questions