Home > Article > Development Tools > 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;

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.

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!