Logical Operation 2


//This program is to find logical operation

#include<stdio.h>

main ()
{
 int y= (2<4)&&(80==40);
 printf("value of y = %d",y);
}




/*
OUTPUT:
value of y = 0
*/

Comments