how to create a c# file in visual studio code code example
Example 1: how to make a C# application visual studio code
mkdir MyApp; cd MyApp;
dotnet new console
Example 2: how to run c program from visual studio terminal
Fire up the terminal from VS code
Use the command "gcc filename.c" to compile the program
Use the command ".\a.exe" to run the program from the terminal
P.S. Remove "" before exceuting