| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A comprehensive collection of C programming exercises and examples covering fundamental to advanced concepts in the C programming language. This repository serves as a learning resource and reference for mastering core C programming principles.
This repository contains well-organized C programs that demonstrate various programming concepts, data structures, and algorithms. Each file focuses on specific topics with practical examples and implementations.
| File | Description | Key Concepts |
|---|---|---|
| Arrays.c | Array operations and matrix manipulations | 1D/2D arrays, matrix operations, sparse matrix detection |
| CoditionalStatemaents.c | Decision-making constructs | if-else, switch-case, ternary operators, nested conditions |
| Functions.c | Function definitions and implementations | Function declaration, parameter passing, return values |
| Hello.c | Basic I/O and character operations | Character variables, printf formatting |
| InstructionOperators.c | Operators and expressions | Arithmetic, relational, logical operators |
| LoopsControlinstructions.c | Iteration and control flow | for, while, do-while loops, break, continue |
| Pointers.c | Memory management and pointer operations | Pointer basics, pointer-to-pointer, memory addressing |
| Strings.c | String handling and manipulation | Character arrays, string functions, string I/O |
| ch.cpp | C++ compatibility examples | Mixed C/C++ concepts |
Individual File Compilation:
gcc filename.c -o filename.exeUsing VS Code Build Task:
Execute the Program:
./filename.exe# Compile and run array examples
gcc Arrays.c -o Arrays.exe
./Arrays.exe
# Compile and run string manipulation
gcc Strings.c -o Strings.exe
./Strings.exeThis is a personal learning repository. Feel free to:
This project is created for educational purposes. Feel free to use and modify for learning.
Happy Coding! 🚀
| Back | FazBrowse Home | New Git URL |