C

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).
  1. Download a code editor such as Visual Studio Code by Microsoft.
  2. Download example code using git clone.
# Install Git

git clone https://github.com/loganthebeing/c-essentials.git
  1. Open example code in code editor (File Open File…).
  2. Compile example code in Bash using gcc, the GNU Compiler Collection.
# Install GCC

gcc -o basics basics.c
  1. Run the program.
./basics

basics.c

morebasics.c