memset

study_all_day發表於2024-04-18

memset函式及其用法

include <string.h>
void *memset(void *s, int c, unsigned long n);

函式的功能是:指標變數 s 所指向的前 n 位元組的記憶體單元用一個“整數” c 替換,注意 c 是 int 型。s 是 void* 型的指標變數,所以它可以為任何型別的資料進行初始化。