Passing Parameters
Home Up History Ethics Paradigms Resources

 

There are two important was of passing parameters to a function or subroutine. One is passing parameter by value where a copy of the parameter is passed and the other is passing by reference where a pointer to the parameters is passed.

We are going to demonstrate how these operations are implemented graphically at the machine level. The purpose of these demonstrations is to demonstrate how the underlying machine architecture supports high-level language operations.