标签: c++
我创建了一个虚拟程序来查看C ++是否正常工作,test.cpp:
int main(){ int a = 10; return 0; }
在我的终端中,我输入了:
gcc -Wall -c test.cpp -o test ./test
我得到以下输出:
bash: ./test: Permission denied
如何才能运行我的程序?