C 语言
hello C world
白白6
这个作者很懒,什么都没留下…
展开
-
理解C语言的多级指针
在C语言的开发过程中会用到一些指针,是开发更方便点,但是理解起来就有点不舒服了。现在说说我自己指针理解,看看下面的程序。程序是在十六位机器上运行的。所以打印出来的地址值是两个字节。void main(void){ U16 num; num = 66; U16 * ptr; U16 ** pptr; U16 *** ppptr; U16 ****p4tr; U16 *****p5...原创 2019-11-28 16:39:14 · 13356 阅读 · 0 评论 -
**字符串的翻转------C语言异或来实现**
字符串的翻转------C语言异或来实现#include<stdio.h>void reverse(char *a){ char *p=a;while(*p++!=’\0’);p-=2;while(a<p){*a=*a^*p;*p=*a^*p;*a=*a^*p;a++;p–; }}int main(){char str[]=“hello”;r...原创 2018-11-22 22:19:56 · 617 阅读 · 1 评论