Code:
var Trend[5];

void main() {
	int i;
	for(i = 0; i < 100; i++) {
 		Trend[i] = i;
		printf("nTrend[%d]: %.0f",i,Trend[i]);
	}
}


Output:
Code:
...
Trend[97]: 97
Trend[98]: 98
Trend[99]: 99


How many elements does this array contain?