Repository Contents:
This repository contains C programs written to reinforce understanding of C programming concepts. These programs were completed for the CPE 203 course at Ladoke Akintola University Of Technology during the Previous Semester. The code includes examples of:
- 3x3 matrix: Basic matrix operations.
- Addition: Simple arithmetic operations.
- Palindrome checker: String manipulation and conditional logic.
Compilation and Execution:
To compile and run these programs, you will need a C compiler (such as GCC).
-
Clone the repository:
git clone https://github.com/freddyfavour/CPE-203_Practical-Programming-with-C.git
-
Navigate to the project directory:
cd CPE-203_Practical-Programming-with-C
-
Compile the C file:
gcc desired_file.c -o desired_program
Replace
desired_file.c
with the name of your C file anddesired_program
with the desired executable name. -
Run the program:
./desired_program