当前学科:计算机操作系统
  • 题目: 未知类型

      以卜函数sstrcat()的功能是实现宁符串的连接,即将t所指字符串复制到s所指字符串的尾部。例如:s所指字符串为abcd,t所指字符申为efgh,函数调用后s所指字符串为abcdefgh。请填空。 include <string.h> void sstrcat(char *s, char *t) { int n; n=strlen(s); while(*(s+n)= ){s++;t++;} }

    答案: <查看本题扣1积分>

    查看答案

    答案不对?请尝试站内搜索