mirror of
https://github.com/kmc7468/cs420.git
synced 2025-12-14 22:38:46 +00:00
11 lines
135 B
C
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;
|
|
}
|