0
what is Call by value, call by reference, call by address?
2 odpowiedzi
+ 3
The major difference between call by value and call by reference is that in call by value a copy of actual arguments is passed to respective formal arguments. While, in call by reference the location (address) of actual arguments is passed to formal arguments, hence any change made to formal arguments will also reflect in actual arguments.
0
find area of circle by using frien functions ?