Lesson 1: Hello, World! — Your first C program
C is a compiled language — the code you write is translated once into machine language, and Linux and most operating systems were written in it. Every C program has a fixed structure: #include <stdio.h> brings in the output tools, int main(void) is the starting point, printf("...\n"); prints to the