What value is returned by function result?

```
double result( const double list[], int ListSize )
{
double x;
x = list[0];
for (int i = 1; i < ListSize; ++i)
if ( list[i] < x )
x = list[i];
return x;
}
```


a. the smallest of the first ListSize elements of array list
b. the subscript of the first occurrence of the smallest of the first ListSize elements of array list
c. the largest of the first ListSize elements of array list
d. the subscript of the first occurrence of the largest of the first ListSize elements of array list

a. the smallest of the first ListSize elements of array list

Computer Science & Information Technology

You might also like to view...

By default the Action Catalog and Add New Action combo box only show actions that execute in nontrusted databases. To see all actions, click Show All Actions in the ________ on the Design tab

A) Tools group B) Show/Hide group C) Views group D) Field, Record & Table Events group

Computer Science & Information Technology

The Side by Side view command will be grayed out if you have more than two documents open at the same time

Indicate whether the statement is true or false

Computer Science & Information Technology