您的位置:首页 > 游戏 > 手游 > 从零开始学习嵌入式----指针习题详解

从零开始学习嵌入式----指针习题详解

2024/11/17 5:36:01 来源:https://blog.csdn.net/D1557329860/article/details/140445592  浏览:    关键词:从零开始学习嵌入式----指针习题详解

 

目录

 

指针习题

1、*p++

2、*p

3、(*p)++

4、p

5、++*p

6、*p

7、*++p

8、++(*p) 


指针习题

#include<stdio.h>
#include<string.h>
int main(int argc, char const *argv[])
{char buf[32]="helloworld";char *p = buf;printf("%c\n",*p++);printf("%c\n",*p);printf("%c\n",(*p)++);printf("%s\n",p);printf("%c\n",++*p);printf("%c\n",*p);printf("%c\n",*++p);printf("%c\n",++(*p));return 0;
}

 

1、*p++

      先取*p,再p++。输出结果为'h'

helloworld\0
p

2、*p

       在上一步的基础上,结果为'e' 

 

helloworld\0
p

3、(*p)++

        先取*p,然后内容++ 

hflloworld\0
p

4、p

        %s,输出为字符串,结果为"flloworld"

5、++*p

        前置++,先取*p,再内容+1 

hglloworld\0
p

6、*p

        在上一步的基础上,输出结果为'g' 

hglloworld\0
p

7、*++p

        先计算++p,再取内容,输出结果为'l'

heMloworld\0
p

8、++(*p) 

        先取*p内容,然后再++,输出结果为'M'

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com