Examlex

Solved

What Does the Following Code Do

question 3

Multiple Choice

What does the following code do?
Const int SIZE = 5;
Double x[SIZE];
For (int i = 2; i <= SIZE; i++)
{
X[i] = 0.0;
}


Definitions:

Related Questions