09.02.2014, 23:23
put simply it means that you have a certain array, and you're trying to access an index of that array that does not exist
for example
new arr[5];
printf("%d",arr[8])];
obviously the array does not have the index 8, it's upper index is 4
for example
new arr[5];
printf("%d",arr[8])];
obviously the array does not have the index 8, it's upper index is 4