-
Which of these is an incorrect Statement?
-
- Array can be initialized when they are declared.
- Array can be initialized using comma separated expressions surrounded by curly braces.
- It is necessary to use new operator to initialize an array.
- None of these
- NA
Correct Option: C
Array can be initialized using both new and comma separated expressions surrounded by curly braces example : int arr[5] = new int[5]; and int arr[] = { 0, 1, 2, 3, 4};