t051: T601(字元字串與檔案處理)
標籤 : TQC 字元字串與檔案處理
通過比率 : 0人/0人 (0%) [非即時]
評分方式:
Tolerant

最近更新 : 2022-06-24 01:14

內容

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;
}

輸入說明
輸出說明
範例輸入 #1


											
										
範例輸出 #1
str字串的長度是14
pstr2連結pstr1後的字串為:Apple iPod
str3字串如下: iPod
測資資訊:
記憶體限制: 64 MB
公開 測資點#0 (100%): 1.0s , <1K
提示 :
標籤:
TQC 字元字串與檔案處理
出處:
TQC 題庫051 [管理者: zero(管理員) ]


編號 身分 題目 主題 人氣 發表日期
沒有發現任何「解題報告」