Question: Which of the following is the correct syntax to declare an array of ten integers? a. int a[10] = new int[10]; b. int[10] a =
Which of the following is the correct syntax to declare an array of ten integers?
a. int a[10] = new int[10];
b. int[10] a = new int[10];
c. []int a = [10]int;
d. int a[10];
e. int[] a = new int[10];
Step by Step Solution
3.31 Rating (160 Votes )
There are 3 Steps involved in it
Syntax to de... View full answer
Get step-by-step solutions from verified subject matter experts
