题目内容

下面程序是将字符串P中的所有字符复制到字符串b中,要求每复制三个字符后插入一个空格。
#include<stdio.h>
void cp(char *P,char *b)
{int i,k=0;
while(*p)
{i=0;
while(______)/*第一空*/
{b[k]=*p;
k++;p++;i++;
}
if(*p)
{______;/*第二空*/
}
}
______;/*第三空*/
}
main()
{char a[20],b[20];
gets(a);
cp(a,b);
puts(b);
print f("\n");
}

查看答案
更多问题

编程要求输出两个字符串对应位置相等的字符,并输出其位置号(自然编号)。

#include<stdio.h>
void swap(int *P,int *q)
{
int t;
t=*P;*P=*q;*q=t;
}
main()
{int a=10,b=20;swap(&a,&b);
printff"%d%d\n",a,b);
}

若当前文件目录为C:\tc,在C语句中下列能表示文件tc.c的是

A. tc.c
B. C:tc\tc.c
C:\tc\tc.c
D. C\tc\tc.c

Traditional linguists believe that the ______ form. of language was superior to the spoken

答案查题题库