for (i = 0; i < 30; i = i + 1)
{
myArray1[i];
}
What do you think this code is doing? Any answer other than NOTHING is wrong.
for (i = 0; i < 30; i = i + 1)
{
myArray1[i];
}
What do you think this code is doing? Any answer other than NOTHING is wrong.