Home  >  Article  >  Development Tools  >  How to run c program in vscode

How to run c program in vscode

王林
王林Original
2020-02-10 15:13:4311673browse

How to run c program in vscode

The program file extension of c language is .c.

First use the cd command to switch to the source file directory or directly enter the full path name;

How to run c program in vscode

Then use the compiler command (assuming the compiler is mingw) g xxx.cpp -o xxx.exeCompile;

Finally enter ./xxx.exe to run the compiled program.

How to run c program in vscode

Recommended related articles and tutorials: vscode tutorial

The above is the detailed content of How to run c program in vscode. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn