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:
C/C++ Source or Header  |  1993-10-05  |  251 b   |  16 lines

  1. // \EXAMPLES\EX0419.CPP
  2.  
  3. #include <iostream.h>
  4.  
  5. float x = 99.9;
  6.  
  7. void f() {
  8.   cout << "Here is x in f():  " << x << endl; // global x
  9. }
  10.  
  11. void main() {
  12.    int x = 0;
  13.    f();
  14.    cout << "Here is x in main(): " << x << endl;  // local x
  15. }
  16.