填空题 请补充main函数,该函数的功能是:从键盘输入一个字符串并保存在字符串str1中,将字符串str1中下标为偶数的字符保存在字符串str2中并输出。例如,当str1="cdefghij",则str2="cegi"。 注意:部分源程序在文件BLANK1 .C中 。 请勿改动 main 函数和其他函数中的任何内容,仅在函数 fun 的横线上填入所编写的若干表达式或语句。 #include
#include
#include
#define LEN 80 void main() { char str1[LEN],str2[LEN]; char *p1=str1,*p2=str2; int i=0,j=0; system("CLS"); printf("Enter the string:\n"); scanf(【1】); printf("***the origialstring***\n"); while(*(p1+j)) { printf("【2】",*(p1+j)); j++; } for(i=0;i