#include <stdio.h>
void main()
{
char a[] = "123";
char b[10];
char *s, *p;
s = a;
p = b;
//取s的值,s自加,取p的值,p自加,将old_s的值赋给old_p
while(*p++ = *s++);
s = NULL;
p = NULL;
printf("%s\n", b);
}
#include <stdio.h>
void main()
{
char a[] = "123";
char b[10];
char *s, *p;
s = a;
p = b;
//取s的值,s自加,取p的值,p自加,将old_s的值赋给old_p
while(*p++ = *s++);
s = NULL;
p = NULL;
printf("%s\n", b);
}
仅供参考~stringUtil.h#ifndef _STRINGUTIL_H#define _STRINGUTIL_H#defi
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M