6 lines
83 B
C
6 lines
83 B
C
int func();
|
|
|
|
int main(int argc, char **argv) {
|
|
return func() == 42 ? 0 : 99;
|
|
}
|