Files
cs420/examples/cond.c
Jeehoon Kang 1b7d25314d Update test
2020-03-17 22:30:16 +09:00

7 lines
81 B
C

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