Starting To Write C CodeFirst C ProgramWrite and Run your First C ProgramHello World ProgramOpen Visual Studio Code and create a new file by going to File > New File, or use the keyboard shortcut Ctrl+N (Windows) or Cmd+N (Mac) to create a new file.Save the file with a .c file extension, for example "hello.c". Choose a location on your computer where you want to save the file.Type or copy and paste the following C code into the file:// Include Header files#include "stdio.h" //printf, scanf etc// Start of C application int main() { // Print to Console/Terminal printf("Hello, World\n"); // Return Success return 0;}Run Example >>Output:Output:Hello, WorldRunning Hello World ProgramOpen the terminal in Visual Studio Code by going to View > Terminal.Compile the programType the following command to compile the program using the GCC compiler:$ gcc hello-world.c -o hello-worldhello-world executable file gets generatedThis will create an executable file named "hello".Run the programTo run the program, type the following command and press Enter:$ ./hello-worldHello, WorldThe output of the program will be displayed in the terminal.