|
|
|
|
Calling The Function by Value
In C, by default, all function arguments are passed by value.This means that when arguments are passed to the called function, the values passed are through temporary variables. Any manipulation to be done is done only on these temporary variables. The called function cannot access the actual memory location of the original variable and therefore cannot change its value. #include <stdio.h> |