C中的负数组索引

在论坛中C中有关负数组的其他问题/答案,但我会要求32位编译器的答案:
如果我们有一个数组定义int test_array [5] = {1,2,3,4,5};

那么后续陈述应该返回什么
test_array [20],test_array [-2],test_array [-32764],test_array [4294967700](大于32位可容纳的值),*(a-32764)等

如果索引超出其声明的范围,编译器是否强制返回任何固定值?

解决方法

访问超出其边界的数组会导致未定义的行为(UB).
-ve索引不是有效索引,会导致未定义的行为.

一个未定义的Bheavior意味着任何事情都可以按字面意思发生,如果你很幸运你的程序会崩溃并且问题被检测到,如果你运气不好,代码一直运行良好,并且有一天所有地狱都会破裂.
因此,始终避免编写导致未定义行为的任​​何代码.

Does the compiler force any fixed value to be returned in case index go beyond its declared range ?

没有
程序员必须处理这个问题.标准版不需要编译器为您提供任何指示/警告.标准只是将其定义为UB.

此外,该标准还标识了导致未定义行为的所有以下方案:

  • Addition or subtraction of a pointer into,or just beyond,an array object and an integer type produces a result that does not point into,the same array object.
  • Addition or subtraction of a pointer into,an array object and an integer type produces a result that points just beyond the array object and is used as the operand of a unary * operator that is evaluated.
  • An array subscript is out of range,even if an object is apparently accessible with the given subscript (as in the lvalue expression a[1][7] given the declaration int a[4][5]).

相关文章

本程序的编译和运行环境如下(如果有运行方面的问题欢迎在评...
水了一学期的院选修,万万没想到期末考试还有比较硬核的编程...
补充一下,先前文章末尾给出的下载链接的完整代码含有部分C&...
思路如标题所说采用模N取余法,难点是这个除法过程如何实现。...
本篇博客有更新!!!更新后效果图如下: 文章末尾的完整代码...
刚开始学习模块化程序设计时,估计大家都被形参和实参搞迷糊...