Please send your Questions & Answers or Feedback to "mohan@javabook.org"
Why there is no return type for CallByReference ?
There is no return type to callbyreference as we are passing the reference directly,so the modification will be done in the original location. There must be return type to callbyvalue as we are passing the value not the reference.