12 lines
94 B
C
12 lines
94 B
C
|
extern int f();
|
||
|
|
||
|
void g() {
|
||
|
int y = 14;
|
||
|
int x = f();
|
||
|
}
|
||
|
|
||
|
int main() {
|
||
|
g();
|
||
|
return 0;
|
||
|
}
|