MCQOPTIONS
Saved Bookmarks
| 1. |
Select the correct declaration of the defining array of parameters: |
| A. | void func(int[] x) { } |
| B. | void func(int x) { } |
| C. | void func(param int[]) { } |
| D. | void fun(param int[] x) { } |
| Answer» E. | |