6 lines
85 B
C
6 lines
85 B
C
extern int foo(int);
|
|
extern int bar(int);
|
|
|
|
int main(void) {
|
|
return foo(bar(10));
|
|
}
|