home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Microsoftware Monthly 19…2 Programming Power Tools
/
MASO9512.ISO
/
cpptutor
/
cpptutor.arj
/
EXAMPLES
/
EX0419.CPP
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-10-05
|
251 b
|
16 lines
// \EXAMPLES\EX0419.CPP
#include <iostream.h>
float x = 99.9;
void f() {
cout << "Here is x in f(): " << x << endl; // global x
}
void main() {
int x = 0;
f();
cout << "Here is x in main(): " << x << endl; // local x
}