In the code shown here, what is the correct array declaration for the array used in FillArray?

```
int FindAverage(float numbers[][25]);
int main()
{
//declarations go here
int total;
total = FillArray(numbers);

```

A. int numbers[25];
B. int numbers[25][25];
C. float numbers[25][25];
D. float numbers[25];

C. float numbers[25][25];

Computer Science & Information Technology

You might also like to view...

Gesture recognition is supported by ________ operating system(s)

A) both Windows 7 and Windows 8 B) Windows 8 C) Windows XP D) Windows XP and Windows Vista

Computer Science & Information Technology

If you try to solve a problem recursively, you should

a. find all the stopping cases and the values if needed at that case b. find a recursive call that will lead towards one of the stopping cases c. all of the above d. none of the above

Computer Science & Information Technology