Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
このエラーが発生します。
error: warning: incompatible implicit declaration of built-in function ‘memcpy’ [enabled by default]
これはコードです:
int arr[ 12] = {1,0,0,0,0,0,0,0,0,0,9370, 0}; void *a = &arr; memcpy(machine->mem, a,12*4);
私が間違っていることは何ですか?
を含めるのを忘れた可能性があります<string.h>。
<string.h>
#include <string.h>ファイルの先頭に追加します。
#include <string.h>