C 速查手冊

11.3.1 strcpy()

string.h函數 (function) strcpy() ,需要兩個字串 (string) 當作參數 (parameter) ,然後把第二個參數的字串複製到第一個參數的字串中,然後回傳第一個參數。

以下程式將字串 s 拷貝到字串 t 之中

#include <stdio.h>
#include <string.h>

int main(void)
{
    char s[] = "Well begun is half done.";
    char t[25];
    
    strcpy(t, s);
    
    printf("%s\n", t);
    
    return 0;    
}

/* 《程式語言教學誌》的範例程式
    http://kaiching.org/
    檔名:cstrcpy.c
    功能:示範 string.h 中函數 strcpy() 的使用
    作者:張凱慶 */

編譯後執行,結果如下

$ gcc cstrcpy.c
$ a.out
Well begun is half done.
$

上一頁 11.3 字串處理 string.h
回 C 速查手冊 - 標準程式庫分類索引
下一頁 11.3.2 strncpy()
回 C 速查手冊 - 標準程式庫導覽
回 C 速查手冊首頁
回 C 教材首頁
回程式語言教材首頁