#include #include // This program works OK on my machine even though // it tries to access element a[10] which is not defined. int main() { int a[10]; a[0]=4; a[10]=5; // element 10 in not defined printf("%d\n", a[0]); printf("%d\n", a[10]); system("pause"); }