gpt4 book ai didi

常量增量

转载 作者:太空宇宙 更新时间:2023-11-04 07:00:00 24 4
gpt4 key购买 nike

<分区>

考虑以下两种情况。case1: 编译器错误 --> error: increment of read-only variable ‘x’

    #include<stdio.h>
main()
{
const int x=5;
printf("%d",++x);
}

案例 2:运行成功,输出为 6。为什么?

   #include<stdio.h>
main()
{
const int x=5;
int *ptr=&x;
++(*ptr);
printf("%d",x);
}

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com