Files
cs420/examples/simple_cond.c
2020-03-26 03:38:20 +09:00

11 lines
135 B
C

int f(int x) {
return x + 8;
}
int main() {
int x = 0;
int y = (x++ == 1) ? 1 : 2;
return f((x < y) ? x : 2) == 9;
}