Self-teaching C following "The C Programming Language" by Kernighan & Ritchie
- Exercise 1.1 - Hello, World! program
- Source:
main.c
- Compilation:
gcc -o bin/hello main.c
- Run:
./bin/hello
- Source:
├── chapter-1/
│ └── 1-1/ # Exercise 1.1: Hello, World!
│ ├── main.c # Source code
│ └── bin/ # Compiled executables
│ └── hello # Main executable
└── README.md