96.8k views
0 votes
Which of the following correctly declare an array that can hold up to 3 rows of 5 columns of doubles?

a. float array[3][5];
b. int array[3],[5];
c. float array[3,5];
d. int array[3][5]

User Muno
by
3.8k points

1 Answer

7 votes

Answer:

B

Step-by-step explanation:

cause int is an integer

User Secretgenes
by
3.5k points