MCQOPTIONS
Saved Bookmarks
| 1. |
Which of the following is true for "call by reference" in C program? |
| A. | Called function can alter the value of variable passed from calling function |
| B. | Called function creates a private temporary copy of the passed argument and modifies it. |
| C. | Both A and B are false |
| D. | A is true |
| Answer» B. Called function creates a private temporary copy of the passed argument and modifies it. | |