The C Programming Language 2nd Edition solutions
Assuming you are in the folder:
../TCPL-2nd-Edition/Chapter_1/Excercise_1_1/
To build, use cc command with the code file (optionally an output name) in the terminal:
cc Exercise1-1.c -o program.exe
To run, call the builded file by it's output name in terminal:
./program.exe
Output:
hello, world