memset函式及其用法
include <string.h>
void *memset(void *s, int c, unsigned long n);
函式的功能是: 將指標變數 s 所指向的前 n 位元組的記憶體單元用一個“整數” c 替換,注意 c 是 int 型。s 是 void* 型的指標變數,所以它可以為任何型別的資料進行初始化。
include <string.h>
void *memset(void *s, int c, unsigned long n);
函式的功能是: 將指標變數 s 所指向的前 n 位元組的記憶體單元用一個“整數” c 替換,注意 c 是 int 型。s 是 void* 型的指標變數,所以它可以為任何型別的資料進行初始化。