+ 5
Array with negative index
Why below code results in value of output as zero? Shouldn't it cause as out of index erro int main() { int a[1]; cout << a[-1]; }
2 odpowiedzi
+ 3
I suppose C++ don't have "index out of range" error like Java does. So, if we try to access it tends to show the content in the memory location corresponding to the created array. For instance, when we create int array of size 2 and say it's in the locations 1000 and 1002. when we try to access array[2], it would give the value stored in 1004 which mostly would be 0
+ 2
arrays index always start with zero, because initialize memory from zero. in all languages same concept used.