What is the difference between pass by reference and pass by
value?
Answer Posted / anwer sayed
Pass By Reference :
In Pass by reference address of the variable is passed to a
function. Whatever changes made to the formal parameter will
affect to the actual parameters
- Same memory location is used for both variables.(Formal
and Actual)-
- it is useful when you required to return more then 1 values
Pass By Value:
- In this method value of the variable is passed. Changes
made to formal will not affect the actual parameters.
- Different memory locations will be created for both variables.
Read more:
http://wiki.answers.com/Q/What_is_the_difference_between_pass_by_value_and_pass_by_reference_in_c#ixzz16MOpWSLk
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is protected in oop?
What is a class oop?
Which is better struts or spring?
What is persistence in oop?
What are the 4 main oop principles?
What is encapsulation in oop?
What is abstract class in oop?
What is ambiguity in inheritance?
What does no cap mean?
write a program that takes input in digits and display the result in words from 1 to 1000
What is multilevel inheritance in oop?
What is the point of oop?
What is difference between pop and oop?
What is encapsulation oop?
What exactly is polymorphism?