SOURCE FILE: scope04.cpp




#include <iostream>
using namespace std ;

void my_test_function(void) ;

int main ()
{
  int my_test_number = 1;
  cout << my_test_number << endl ;
  my_test_function() ;
  cout << my_test_number << endl ;
  return 0 ;
}

void my_test_function(void)
{
  cout << my_test_number << endl;
}