标题:指针的简单printf(“%d”,*x+2)出来,点击去看详细吧,谢谢
取消只看楼主
s人圭日月
Rank: 2
等 级:论坛游民
帖 子:36
专家分:27
注 册:2016-6-22
结帖率:50%
 问题点数:0 回复次数:0 
指针的简单printf(“%d”,*x+2)出来,点击去看详细吧,谢谢
# include <stdio.h>
int main(void)
{
    int i,a[10],*x,*y;
    for (i=0;i<10;i++)
    {
        a[i]=i+1;
        printf("%d",a[i]);
    }
    printf("\n");
    x=a,y=&a[5];
    printf("%d\n",*x+2);
    printf("%d\n",*x++);
    printf("%d\n",*x+5);
    printf("%d\n",y-x);
return 0;
}
/*
--------------------------------
12345678910
3  ----------------------------->>>>>>>   这边四个箭头,我不懂其中的计算。x=a语言没有懂?是不是
1  ----------------------------->>>>>>>   等于a[0]一个意思??  那么*x+2,*x+5,他们也就差3个元素??这里答案都是vc++6.0
7  ----------------------------->>>>>>>
4  ----------------------------->>>>>>>
Press any key to continue

*/
搜索更多相关主题的帖子: include return 
2016-09-12 18:46



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-468739-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.218397 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved