Editor / IDE
Visual Studio Code
Compilation
Makefile and GCC
Hello World
Create a folder for your first project
Create a hello.c file with the following content:
#include <stdio.h>
int main()
{
    printf("Hello World\n");
    return 0;
}
Compile and run it as discussed in previous chapters.
You should see “Hello World” output on the screen, this means the environment works.