C 語言學習 --2

memset

Declaration:code

void *memset(void * str , int  c , size_t  n );

Copies the character c (an unsigned char) to the first n characters of the string pointed to by the argument str.string

The argument str is returned.io

說明: 第一個參數: 是被set 的目標地址數據類型

           第二個參數是: 是要設置的字符:其長度只能是一個字節 即8位   0000 0000 -1111 1111   最小值爲 1 最大值爲 255數據

                                     若是傳入的參數大於255 也就是長度超過8 位,則其只取後8位語言

                                      可使用十六進制做爲參數 如 0x11   即  0001 0001 也就是 int 17poi

           第三個參數: 是字節數,即須要設置幾個字節co

                                  這裏須要掌握 c 語言類型中的經常使用數據類型的字節數  可使用 sizeof() 求得block

相關文章
相關標籤/搜索