void *memcpy( void *dest, const void *src, size_t count );
從src copy count bytes到dest
example : 從board1的位址 copy 64*sizeof(int) bytes到board2的位址


void *memset( void *dest, int c, size_t count );
從dest開始的連續count bytes, 每個byte的值都設為c
example : 從board1的位址開始連續64*sizeof(int) bytes都設為0

arrow
arrow
    全站熱搜

    hfchou 發表在 痞客邦 留言(0) 人氣()