Saved Bookmarks
| 1. |
What Is The Default Way Of Passing Parameters To A Function? |
|
Answer» By default, Go uses call by value to pass arguments. In GENERAL, this means that CODE within a function cannot ALTER the arguments used to call the function while calling max() function used the same METHOD. By default, Go uses call by value to pass arguments. In general, this means that code within a function cannot alter the arguments used to call the function while calling max() function used the same method. |
|