code hello.c
make hello
./hello
  • code hello.c
    • Creates a file and allows us to type instructions for this program (window in VS Code)
  • make hello
    • Compiles the file from our instructions in C and creates an executable file named hello
  • ./hello
    • runs a program called hello