1.此程式為計算字串的長度、連結和複製。
2.題目已提供程式碼片段,執行結果如參考畫面,程式碼有語法、邏輯或其他項目上的錯誤,請全數修正。
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main ()
{
char str[]="Apple iPhone 4";
char pstr2[20]="Apple";
char pstr1[]=" iPod";
char str3[20];
printf("str字串的長度是%d\n", strLen(str));
printf("pstr2連結pstr1後的字串為:%s\n", strCat(pstr2, pstr1));
printf("str3字串如下:%s\n", strcopy(str3, pstr1));
return 0;
}
str字串的長度是14 pstr2連結pstr1後的字串為:Apple iPod str3字串如下: iPod
編號 | 身分 | 題目 | 主題 | 人氣 | 發表日期 |
沒有發現任何「解題報告」 |