首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴yeah122的代码贴C语言
#include<stdio.h>
#include<string.h>
int main()
{
 char a[10]="12345";
 gets(a);
 strcat(a,"6789");
 printf("%s\n",a+1);
 return 0;
}
阅读全部 | 2014年12月27日 16:00
1
yeah122