7 lines
84 B
C
7 lines
84 B
C
int func1(void);
|
|
int func2(void);
|
|
|
|
int main(void) {
|
|
return func1() - func2();
|
|
}
|