2014年7月22日 星期二

[C/C++] memcmp 函數


功能:拷貝記憶體內容

#include <stdio.h>
#include <string.h>

main()
{
    char a[30] = "string(a)";
    char b[30] = "string\0string";
    int i;

    memcpy(a, b, sizeof(a));
    printf("mencpy():");

    for(i=0; i<30; i++)
        printf("%c ", a[i]);
}

參考出處:Linux C 函式庫詳解辭典

沒有留言:

張貼留言