hello_sdl SDL quickstart Building: # Install packages sudo apt install libsdl2-dev libsdl2-image-dev libsdl2-ttf-dev libsdl2-mixer-dev # Compile cc hello_sdl.c -o hello_sdl -lSDL2 -lSDL2_image -lSDL2_mixer -lSDL2_ttf # Run ./hello_sdl