编辑代码
C语言代码
gcc13.2
gcc7.5.0
clang-10
运行
void
main
()
{
int
n[
2
] = {
2
,
10
};
int
*i = &n; *i ++;
//应该为 *(i ++);
printf
(
"%d "
,*i); }