https://github.com/guzzdev/epitech-c-pool
2021 Epitech C Pool
https://github.com/guzzdev/epitech-c-pool
Last synced: about 1 year ago
JSON representation
2021 Epitech C Pool
- Host: GitHub
- URL: https://github.com/guzzdev/epitech-c-pool
- Owner: guzzdev
- Created: 2025-03-31T02:56:33.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-03-31T03:07:29.000Z (about 1 year ago)
- Last Synced: 2025-03-31T04:22:01.076Z (about 1 year ago)
- Language: C
- Size: 667 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Epitech C Pool 🏊♂️
This repository gathers all my C projects from the legendary Epitech C Piscine.
Each folder represents a specific day or project from the intense training period, including basic algorithms, memory handling, string manipulation, and even games.
> 📁 All projects are preserved with full Git history thanks to this `merge-repos.sh` script.
## 🔗 Projects Index
| Project Name | Description / Focus | Link |
|-------------------|-----------------------------------------------|------|
| bistromatic | Calculator handling expressions with parentheses and operators | [View](https://github.com/guzzdev/Epitech-C-Pool/tree/master/bistromatic) |
| BSQ | Biggest Square in a map - dynamic programming | [View](https://github.com/guzzdev/Epitech-C-Pool/tree/master/BSQ) |
| countisland | Count the number of islands in a 2D grid | [View](https://github.com/guzzdev/Epitech-C-Pool/tree/master/countisland) |
| cpoolday01 → cpoolday13 | Daily exercises on C fundamentals | [View](https://github.com/guzzdev/Epitech-C-Pool/tree/master/cpoolday01) |
| finalstumper | Final challenge from the piscine | [View](https://github.com/guzzdev/Epitech-C-Pool/tree/master/finalstumper) |
| infinadd | Addition of very large integers | [View](https://github.com/guzzdev/Epitech-C-Pool/tree/master/infinadd) |
| myprintf | Custom implementation of printf | [View](https://github.com/guzzdev/Epitech-C-Pool/tree/master/myprintf) |
| navy | Terminal-based Battleship game | [View](https://github.com/guzzdev/Epitech-C-Pool/tree/master/navy) |
| rush1 | UI drawing with ASCII art (Rush 1) | [View](https://github.com/guzzdev/Epitech-C-Pool/tree/master/rush1) |
| rush2 | String analysis and manipulation | [View](https://github.com/guzzdev/Epitech-C-Pool/tree/master/rush2) |
| star | Pattern drawing with loops | [View](https://github.com/guzzdev/Epitech-C-Pool/tree/master/star) |
## 🚀 About
These projects were developed during the Epitech C Pool — focused on mastering the fundamentals of the C programming language through daily coding challenges and teamwork.
Whether you're here to learn, review, or just curious, feel free to explore the code!
## 🧠 Skills covered
- Memory allocation (`malloc`)
- Pointers & arrays
- Recursion
- Linked lists
- String manipulation
- Terminal I/O
- Math logic & algorithms