Warning: implode(): Invalid arguments passed in /www/wwwroot/jobquiz.info/mdiscuss.php on line 336 Functions can be called either by value or reference ?->(Show Answer!)
1. Functions can be called either by value or reference
Ask Your Doubts Here
Comments
By: guest on 01 Jun 2017 06.01 pm
True, A function can be called either call by value or call by reference. Example: Call by value means c = sub(a, b); here value of a and b are passed. Call by reference means c = sub(&a, &b); here address of a and b are passed.