C 速查手冊
11.3.19 memset()
string.h 的函數 (function) memset() 將某一記憶體區段的前 n 個字元 (character) 全部設定為某一字元。
以下程式將字串 (string) s 全部設成 'n'
#include <stdio.h>
#include <string.h>
int main(void)
{
char s[] = "congratulation";
printf("%s\n", memset(s, 'n', 13));
return 0;
}
/* 《程式語言教學誌》的範例程式
http://kaiching.org/
檔名:cmemset.c
功能:示範 string.h 中函數 memset() 的使用
作者:張凱慶 */
編譯後執行,結果如下
$ gcc cmemset.c |
$ a.out |
nnnnnnnnnnnnnn |
$ |