gpt4 book ai didi

c - 为什么以下代码打印 1 作为输出?

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

指针的差异给出 1 作为输出..

#include<string.h>
#include<stdio.h>
int main()
{
int a=5,b=10;
int *p=&a,*q=&b;
int c=p-q;
printf("%d",c);
return 0;
}

最佳答案

将两个不指向同一个数组的指针相减是没有意义的。

C11:6.5.6 加法运算符(p8)

[...] If both the pointer operand and the result point to elements of the same array object, or one past the last element of the array object, the evaluation shall not produce an overflow; otherwise, the behavior is undefined.

关于c - 为什么以下代码打印 1 作为输出?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29520756/

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