Calculo de expresiones de un programa 2 - YezaelOtamendi/Programamcion-en-C GitHub Wiki
#include <stdio.h>
#include <math.h>
int main (void){
int a, b, c, x, y, z;
float h;
a=4;
b=3;
c=4;
x=1;
y=x;
z=x;
h=(a>b) || (b==c);
printf("%.2f\n", h);
h=(a!=b) && (a!=b) || (x==z);
printf("%.2f\n", h);
h=((a>=b) || (x>=z)) && ((x!=b) && (y==z));
printf("%.2f\n", h);
h=(!(a>b)) || (x!=b);
printf("%.2f\n", h);
}