C
Programming and Technical
Difference between pass by reference and pass by value?
Read Solution (Total 2)
-
- Pass by reference passes the pointer to called function pass by value passes the value to called function
- 11 years agoHelpfull: Yes(0) No(0)
- in pass by value both formal & actual argumet of value type where as
in pass by reference formal argument are pointer type variable and actual argument are of address type variable? - 10 years agoHelpfull: Yes(0) No(0)
C Other Question