#include <stdio.h>
int main(){
char s[20],t[20],i,*p;
printf("please enter the string");
gets(s);
p=t;
for(i=0;s[i]!='\0';i++){
if(i%2!=0){
*p=s[i];
p++;
}
printf("%s",t);
输出结果末尾总是带着一些莫名其妙的数字
ln12341234
隔壁的小黑
相关分类