现在的位置: 首页 > 综合 > 正文

printf(“%d\n”,*p+++*++p);

2013年10月07日 ⁄ 综合 ⁄ 共 93字 ⁄ 字号 评论关闭

int main()
{
 int a[4] = {10,23,11,19};
 int * p = a;
 printf("%d\n",*p+++*++p);
 printf("%d\n",*++p+50);
}

抱歉!评论已关闭.