Given this function prototype void CalcTotal(float numbers[]),what is wrong with this function?

```void CalcTotal(float numbers)
{
float total;
for(int I = 0; I < 6 ++I)
{
total = total + numbers[I];
}
}```
A. The function header line doesn’t match the prototype.
B. There is a data type in the function header line.
C. I is capitalized.
D. The function is correct.

A

Computer Science & Information Technology

You might also like to view...

When creating a parameter query, text needs to be enclosed within ________ in the Criteria row of the Query Design Grid

Fill in the blank(s) with correct word

Computer Science & Information Technology

Which two tools would you use on Ubuntu to resize a partition? (Select two.)

A) Disk Utility B. dd C. GParted D. rm E. Disk Admin

Computer Science & Information Technology