This repository is a free and open-source C programming course created by VFLDEEP Team. We are both high school students and wanted to help others by sharing what we've learned. We're progressing slowly, starting with the simplest concepts and adding new lessons daily. Our goal is to create a simple and example-rich resource that anyone who wants to learn C from scratch can understand. All the code is open source; anyone can run it, correct errors, or add new code. We hope it will be useful to you, stay tuned for the new lessons and good luck man :)
- Variables.c - Introduction to variables, data types (int, char, float), and basic I/O
- InputOutput.c - Input/output operations with scanf and printf
- IfElse.c - Conditional statements (if, else if, else, switch)
- Operators.c - Arithmetic, comparison, and logical operators
- Loops.c - For, while, and do-while loops with break and continue statements
- Functions.c - Function definition, parameters, return values, and function calls
- Arrays.c - Single and multi-dimensional arrays, accessing and modifying elements
- Strings.c - Character arrays, string functions (strlen, strcpy, strcat, strcmp, strchr, strstr)