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...

A disk cleanup utility will help keep your computer system running efficiently

Indicate whether the statement is true or false

Computer Science & Information Technology

When you create a form from two tables that have a one-to-many relationship, the first table selected becomes the main form and the second table you select becomes the ________

A) joined form B) subform C) co-form D) split form

Computer Science & Information Technology

Sometimes the direction of text in a placeholder must be changed to fit the desired area

Indicate whether the statement is true or false

Computer Science & Information Technology

What chkdisk flag allows chkdsk to go directly to a corrupted spot identified by the Spot Verifier service?

A. /resume B. /spotfix C. /corrupted D. /fixbad

Computer Science & Information Technology