有如下程序: #include <iostream> using namespace std; int strle(char a[],char b[]) { int num=O,n=O; while (* (

admin2010-03-29  14

问题 有如下程序:
   #include <iostream>
   using namespace std;
   int strle(char a[],char b[])
   {
      int num=O,n=O;
      while (* (a+num) !=’\0’)
         num++;
      while (b [n] )
      {
         * (a+num)=b [n];
         num++;
         n++;
      }
      return(num);
   }
   int main ()
   {
      char strl[80],str2[80],*p1=str1,*p2=str2;
      cin>>p1;
      cin>>p2;
      cout<<strle(p1,p2)<<end1;
      return  0;
   }
   运行上述程序,如果从键盘输入字符串qwerty和字符串abcd,则程序的输出结果是【  】。

选项

答案10

解析 函数strle()的功能是求出两字符串长度的总和。
转载请注明原文地址:https://kaotiyun.com/show/yDjp777K
0

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