Example code for C programming study
git clone https://github.com/Tetrahedrite/c_programming_101.git # Clone git repository to 'c_programming_101'
cd c_programming_101 # Change directory to 'c_programming_101'
- Build all C files in every chapter.
make
- Build all C files in specific chapter.
cd ch1
make
- Build specific C file.
cd ch1
make 1_p01
- Run all files in every chapter.
make run
- Run all files in specific chapter.
cd ch1
make run
- Run specific file.
cd ch1
./1_p01.out