louiset 2015-08-12 17:11 采纳率: 57.1%
浏览 1522
已采纳

请问此c程序哪里出错了。。谢谢

要求将输入的两个字符串连接起来。
#include
#include
char s1[80],s2[80];
int main()
{ void f();
printf("say sth:");
gets(s1);
printf("say sth. again:");
gets(s2);
f();
}
void f()
{ int i;
strcat(s1,s2);
for(i=0;i<=80;i++)
printf("%c",s1[i]);
}

  • 写回答

3条回答 默认 最新

  • threenewbee 2015-08-12 22:05
    关注
     #include <stdio.h>
    
    char s1[80],s2[80];
    
    void f(char *a, char * b)
    {
        char * a1 = a;
        while (*a1 != '\0') a1++;
        for (char * b1 = b; *b1 != '\0'; b1++,a1++)
        {
            *a1 = *b1;
        }
        *a1 = '\0';
    }
    
    int main()
    {  
      printf("say sth:");
      gets(s1);
      printf("say sth. again:");
      gets(s2);
      f(s1,s2);
      printf("%s",s1);
      return 0;
    }
    

    say sth:hello
    say sth. again: world
    hello worldPress any key to continue

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 抖音咸鱼付款链接转码支付宝
  • ¥15 ubuntu22.04上安装ursim-3.15.8.106339遇到的问题
  • ¥15 求螺旋焊缝的图像处理
  • ¥15 blast算法(相关搜索:数据库)
  • ¥15 请问有人会紧聚焦相关的matlab知识嘛?
  • ¥15 网络通信安全解决方案
  • ¥50 yalmip+Gurobi
  • ¥20 win10修改放大文本以及缩放与布局后蓝屏无法正常进入桌面
  • ¥15 itunes恢复数据最后一步发生错误
  • ¥15 关于#windows#的问题:2024年5月15日的win11更新后资源管理器没有地址栏了顶部的地址栏和文件搜索都消失了