SOURCE FILE: runTimeStack.cpp


#include <iostream.h>



int f(int x)
{
  return x + 7 ;
}




int main()
{
   int x, y ;
   x = 3 ;
   y = f(x) ;
   cout << y << endl ;
   cout << x << endl ;
   return 0 ;
}