C語言常用函式

梓曦羽發表於2020-11-08

1.memset()函式用來對一段記憶體空間全部設定為某個字元,一般用在對定義的字串進行初始化為‘ ’或‘/0’
例:char a[100];memset(a, ‘/0’, sizeof(a));
2.memset()函式原型是extern void *memset(void *buffer, int c, int count)
buffer為指標或陣列,
c:是賦值給陣列的值,
count是陣列的長度。
3.memset函式標頭檔案為<string.h>
#include<string.h>

相關文章