Harry Kruger Asked: 2019-08-24 10:06:56 +0800 CST 使用 gcc 编译 c 代码时访问被拒绝 5 我编译了我的 c 程序gcc -c -o test.exe test.c 并且编译没有错误然后当我运行它时给出Access is denied. 这是我的代码 #include <stdio.h> int main() { printf("Hello, World!"); return 0; } c gcc