home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sams Teach Yourself C in 21 Days (6th Edition)
/
STYC216E.ISO
/
mac
/
Examples
/
Day12
/
test.c
< prev
next >
Wrap
C/C++ Source or Header
|
2002-06-08
|
299b
|
25 lines
/* Illustrates declaring external variables. */
#include <stdio.h>
void print_value(void);
int main( void )
{
extern int x;
printf("%d\n", x);
print_value();
return 0;
}
void print_value(void)
{
extern int x;
printf("%d\n", x);
}
int x = 999;