#include int main(int argc, char *argv[]) { int a[10]; int i; for ( i = 0; i < 10; i++ ) a[i] = i; // Out of bound index.... for ( i = 0; i < 20; i++ ) { cout << a[i] << " "; } cout << endl; }