#include <stdio.h>
int main()
{
int a = 0, b = 1, c = 2;
int x = (a < b) && (b < c);
int y = (a && b) || (b && c);
int z = (a || !c);
int k = (a != b) && (b != c);
printf("%d %d %d %d \n", x, y, z, k);
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: