まずは、そのままやってみる。 #include <stdio.h> #include <string.h> #define MYARRAY {0xf4, 0x12, 0xfa, 0x66, 0x7a, 0x38} int main(void) { unsigned char arr[6]; memcpy(arr, MYARRAY, 6); for(int i=0; i<6; i++) printf("%02X,", arr[i]); printf("\n"); } 下のようなコンパイルエラーが出る。 hoge.c: In function ‘main’: hoge.c:5:19: error:…