93: Mainline
Whenever a call to the doubling_time
function appears, the C
compiler must arrange for the following to be done:
- Reserve a chunk of memory for the value of the argument expression.
- Write the value of that argument expression into the memory
chunk.
- Identify the memory chunk with the parameter,
r
.
- Evaluate the expression
72.0 / r
.
- Return the value of
72.0 / r
for use in other
computations.