Tim Love, “ANSI C for Programmers on UNIX Systems,” Cambridge University Engineering Department, 21 March 1996.
How to Use Code
Important: Instructions are for Linux users. Linux can be installed on Windows with Windows Subsystem for Linux (WSL). |
- Download a code editor such as Visual Studio Code by Microsoft.
- Download example code using
git clone
.
# Install Git
git clone https://github.com/loganthebeing/c-essentials.git
- Open example code in code editor (File → Open File…).
- Compile example code in Bash using
gcc
, the GNU Compiler Collection.
# Install GCC
gcc -o basics basics.c
- Run the program.
./basics