我输入\xef\xbc\x9a
\n\n clang -emit-llvm --target=wasm32 -Oz my.cpp -c -o math.bc\nRun Code Online (Sandbox Code Playgroud)\n\n一直存在以下错误:
\n\nmy.cpp:1:10: fatal error: \'stdio.h\' file not found\n#include <stdio.h>\n ^~~~~~~~~\nRun Code Online (Sandbox Code Playgroud)\n\n我的来源如下:
\n\n\n#include "stdio.h"\n#include "math.h"\n\nvoid ttt()\n{\n double ww = pow((double)2.0, (double)0.3);\n print(ww);\n}\nRun Code Online (Sandbox Code Playgroud)\n