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
*/
This blog is to help B-Tech First Year students with their C Programs. Try to first do the programs yourself and if you face any problem then knock at this blog's door. Hope you will find it helpful.
Comments
Post a Comment