Files
cs420/examples/c/cond.c
2020-04-23 23:07:23 +09:00

7 lines
81 B
C

int main()
{
int y = 1;
int x = 0;
return ((x == y) ? 2 : 5) == 5;
}