Logical Operation 1
//This program is to find out logical oprtation
#include<stdio.h>
main()
{
int y=(50 != 70)||(21 == 4);
printf("Result = %d",y);
}
/*
OUTPUT:
Result = 1
*/
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