标签:image 判断 foo mamicode return http turn 技术 include
[ 测试用例 ]
#include <stdio.h>
int main()
{
char *p = "I love China. And I love Chinese food.";
char str[100];
char *q = str;
while(*q++ = *p++);
printf("%s\n", str);
return 0;
}
[ 测试结果 ]
【结论】
p
指向的内容while
判断p
递增标签:image 判断 foo mamicode return http turn 技术 include
原文地址:https://www.cnblogs.com/zhyantao/p/11395834.html