home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sams Teach Yourself C in 21 Days (6th Edition)
/
STYC216E.ISO
/
mac
/
Examples
/
Day12
/
Ex12_02.c
< prev
next >
Wrap
C/C++ Source or Header
|
2002-05-04
|
249b
|
21 lines
/* Illustrates variable scope. */
#include <stdio.h>
void print_value(int x);
int main( void )
{
int x = 999;
printf("%d", x);
print_value( x );
return 0;
}
void print_value( int x)
{
printf("%d", x);
}