[置顶] 字符串的倒序排列

#include <stdio.h>
#include "string.h"
#include <stdlib.h>
int main()
{
  
  char *src="Hello World";
  int len=strlen(src);
  char *dest=(char *)malloc((len+1)*sizeof(char));
  char *d=dest;
  char *s=&src[len-1];
  while(len--!=0)
	  *d++=*s--;  
          *d=0;
printf("%s \n",dest);
free(dest);
return 0;

}

其中:

*d=0;不明白什么意思?

while(len--!=0)
*d++=*s--;

最终d指向字符串尾,

*d = 0 即为字符串尾部加‘\0’

在内容读取字符,遇到0x00就会结束,否则会继续,由于申请出来的内存没有清零操作,不加结束符会出现乱码

‘\0’的ascii码就是 0  
在内存中,字符按照ascii码来存放的

0 和 '\0' 在C语言这两个是等价了

你可能感兴趣的:(c,语言,include)