码迷,mamicode.com
首页 > 其他好文 > 详细

(*p)++和*(p++)和*p++的区别

时间:2016-09-06 19:48:40      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:

 * 和++优先级是同一级别,同一级别按照从右往左的顺序计算

所以:  *p++等价于*(p++) 

char *a="this a book";
   char *p = a;
   p++;
   printf("%c\n", *p);//output:h
   *p++;
   printf("%c\n", *p);//output:i

   /* overflow
   char x = (*p)++;
   printf("%d\n", x);
   */
   while (*p != ‘\0‘) {
       printf("%c", *p++);//is
   }
   printf("\n");

(*p)++和*(p++)和*p++的区别

标签:

原文地址:http://www.cnblogs.com/guxuanqing/p/5846909.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!