下列给定程序中,函数fun的功能是:判断ch中的字符是否与str所指串中的某个字符相同;只要有相同的,就什么也不做;若都不同,则将ch中的字符插在串的最后,成为新的字符串。 #include #include void fun(________

admin2016-12-25  19

问题 下列给定程序中,函数fun的功能是:判断ch中的字符是否与str所指串中的某个字符相同;只要有相同的,就什么也不做;若都不同,则将ch中的字符插在串的最后,成为新的字符串。
  #include
  #include
  void fun(________,char ch)/*第一空*/
  { while(*str&&*str!  =ch)str++;
    if(*str!=ch)
    {*str=ch;
    ________;    /*第二空*/
    }
  }
  main()
  { char s[81],c;
  printf( "\n please enter astring:\n");
    ________;    /*第三空*/
  pnintf("\n please enter the character to search:");
  c= getchar();
  fun(s,c);
  printf("\n the result is %s\n",s);
  }

选项

答案char* str *(str+1)=0(为字符串加上结束符) gets(s)

解析
转载请注明原文地址:https://jikaoti.com/ti/WztaFFFM
0

相关试题推荐
最新回复(0)