#include <stdio.h> int main(void) { int x[100]; int i; /* load x with values 0 through 99 */ for(i = 0; i < 100; ++i) x[ i ] = i; /* display contents of x */ for(i = 0; i < 100; ++i) printf("%d ", x[ i ]); return 0; }