When a module calling is made by using the call by value thi
When a module calling is made by using the \"call by value\", this requieres de reference of the variable?
True or False
When a module calling is made by using the \"call by value\", this requieres de reference of the variable?
True or False
True or False
Solution
Flase
Only varialble knowledge is atken, no need of any reference variable. Only the value is send to the module calling, The called module will seperately creates an address a local variable for the arguments passed. Reference meand sending a address instead of the value. i.e. refrence the value to the address.
