An open API service indexing awesome lists of open source software.

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

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