Thread
:
Why Does This Not Crash?
View Single Post
it career
Go4Expert Member
8Apr2007,19:47
Hello C/C++ experts,
I write the following code
Code:
int a[10]; int b[10]; //initiliaze all element of array a and b to 0. a[11]=255;
Neither the program crashes nor the value of b[0] becomes 255
What could be the reason?