how to fix “not recognized as an internal or external command” issue

前端 未结 1 563
悲&欢浪女
悲&欢浪女 2021-01-24 05:20

when i write a simple code like

#include 
using namespace std;

int main() {
    cout << \"Hello World\";
    return 0;
}
<
相关标签:
1条回答
  • 2021-01-24 05:55

    CTRL+F7 only compiles the program. It doesn't build it. There are two stages needed to build a program, the compile stage and the link stage. Just press F7 instead of CTRL+F7 and try again.

    0 讨论(0)
提交回复
热议问题