Quote:
|
dont do assignments in a while statment like that. the only thing that should be going on in the while(...) is a boolean test condtion.
|
int i = 0;
while (i < 10)
{
myArray [i] = i;
++i;
} Please send me the code that performs this function with a boolean test.