A good answer might be:
stuff[0] has 23 stuff[1] has 38 stuff[2] has 14 stuff[3] has 0 | |
Using a Variable as an IndexThe index of an array is always an integer type. It does not have to be a literal. It can be any expression that evaluates to an integer. For example, the following are legal: Using an expression for an array index is a very powerful tool. Often a problem is solved by organizing the data into arrays, and then processing that data in a systematic way using variables as indexes. Here is a further example:int values[] = new int[7]; int index; index = 0; values[ index ] = 71; // put 71 into slot 0 index = 5; values[ index ] = 23; // put 23 into slot 5 index = 3; values[ 2+2 ] = values[ index-3 ]; // same as values[ 4 ] = values[ 0 ];
You can, of course, copy-paste-and-run this program. | |
QUESTION 8:What does the above program output? Click Here after you have answered the question |