会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
fivebird
博客园
首页
新随笔
联系
管理
订阅
2012年10月23日
c基础
摘要: #include<stdio.h>void main(){char *p="abcdef";printf("%c,%c\n",*p,*p++);printf("%c,%c\n",*p,*p++);}输出为:b,a c,b#include<stdio.h>void main(){char *p="abcdef";printf(“%c\n",*p);printf("%c\n",*p++);}输出为 a a解:函数计算顺序从右至左
阅读全文
posted @ 2012-10-23 13:42 fivebird
阅读(115)
评论(0)
推荐(0)
编辑
公告