C 語言標準函數庫分類導覽 - string.h strncpy()

string.h 的函數 strncpy() ,需要兩個字串及一個整數 n 當作參數,共有三個參數。然後把第二個參數字串的 n 個字元複製到第一個參數的字串中,然後回傳第一個參數。



以下程式將字串 s 中的 20 個字元拷貝到字串 t 之中
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <stdio.h>
#include <string.h>
 
int main(void)
{
    char s[] = "What's sauce for the goose is sauce for the gander.";
    char t[25];
     
    strncpy(t, s, 20);
     
    printf("%s\n", t);
     
     
    return 0;   
}
 
/* 《程式語言教學誌》的範例程式
    檔名:cstrncpy.c
    功能:示範 string.h 中函數 strncpy() 的使用
    作者:張凱慶
    時間:西元2010年6月 */


編譯後執行,結果如下



您可以繼續參考


沒有留言: