C 速查手冊
11.3.2 strncpy()
string.h 的函數 (function) strncpy() ,需要兩個字串 (string) 及一個整數 n 當作參數 (parameter) ,共有三個參數。然後把第二個參數字串的 n 個字元 (character) 複製到第一個參數的字串中,然後回傳第一個參數。
以下程式將字串 s 中的 20 個字元拷貝到字串 t 之中
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;
}
/* 《程式語言教學誌》的範例程式
http://kaiching.org/
檔名:cstrncpy.c
功能:示範 string.h 中函數 strncpy() 的使用
作者:張凱慶 */
編譯後執行,結果如下
$ gcc cstrncpy.c |
$ a.out |
What's sauce for the |
$ |