6 lines
69 B
C
6 lines
69 B
C
int func(void);
|
|
|
|
int main(void) {
|
|
return func() == 42 ? 0 : 1;
|
|
}
|