提示コードですがなぜmemcpy()関数でアクエスエラーが発生してしまうのでしょうか?原因がわかりません。
参考サイト: http://www9.plala.or.jp/sgwr-t/lib/memcpy.html
cpp
1#include <iostream> 2#include "glm/glm.hpp" 3 4#include <array> 5#include "string.h" 6#include <vector> 7 8 9 10 11char* str = NULL; 12 13 14int main() 15{ 16 const char* str2 = "aaa"; 17 18 str = (char*)memcpy((void*)str, (void const *)str2, strlen(str2)); 19 printf("%s",str); 20 21 22 23 24 return 0; 25}
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。