網站聲明

本網站包含了各式各樣的資源,如果有侵占到您的著作權,請與本人通知,本人會立即改進。本站所有發表僅屬研究討論性質,如果有任何後果請自行負責。

2014-06-12

TQC+ C 字元字串與檔案處理 601

601.
設計說明:

1. 修改程式碼片段中的程式語法、邏輯上的錯誤,執行結果如範例圖。


參考程式碼:
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. int main () {
  5.  char str[]="Apple iPhone 4";
  6.  char pstr2[20]="Apple";
  7.  char pstr1[]=" iPod";
  8.  char str3[20];
  9.  printf("str字串的長度是%d\n", strlen(str));//取得字串長度函數為strlen(),而不是strLen()
  10.  printf("pstr2連結pstr1後的字串為:%s\n", strcat(pstr2, pstr1));//字串串聯函數為strcat(),而不是strCat()
  11.  printf("str3字串如下:%s\n", strcpy(str3, pstr1));//字串複製函數為strcpy(),而不是strcopy()
  12.  system("PAUSE");
  13.  return 0;
  14. }
  •  strlen(const char* cs):傳回字串cs的長度。
  • char* strcat(char* s, const char* ct):連結字串ct到字串 s 之後。
  • char* strcpy(char* s, const char* ct):將字串ct複製到字串 s

TQC+ C 試題總整理


聲明:

這裡的範例程式碼皆由本人親自編輯,歡迎轉載本教學,但請註明本網站,尊重一下作者的心血

沒有留言:

張貼留言

歡迎留言,較舊文章需要留言審核看不到自己的留言是正常的。
若長時間無回應請使用以下聯絡方式:
填寫表單:https://forms.gle/hxxX9n4tATcFnhnk8
寄信到:happyplayblogs@gmail.com