10 lines
95 B
C
10 lines
95 B
C
#include <stdio.h>
|
|
|
|
extern int x;
|
|
|
|
int main(void)
|
|
{
|
|
printf("x = %d\n", x);
|
|
return 0;
|
|
}
|