Files
cs420/examples/c/simple_cond.c
2020-04-23 23:07:23 +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;
}