8 lines
63 B
C
8 lines
63 B
C
extern int i;
|
|
void foo();
|
|
|
|
int main() {
|
|
foo();
|
|
return i;
|
|
}
|