/* * Try compiling and running this program. Not surprisingly, * it crashes. But it does not crash where you would expect! * See if you can figure out why. */ #include int main() { int data[10]; for (int i = 0; i <= 10; i++) { data[i] = i; } for (int i = 0; i <= 10; i++) { printf("%d: %d\n", i, data[i]); } return 0; }