Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/japrozs/see
code containing the topics I practice to become even better in C & C++
https://github.com/japrozs/see
ansi c deadlocks gcc hardware low-level makefile mutex network programming
Last synced: 1 day ago
JSON representation
code containing the topics I practice to become even better in C & C++
- Host: GitHub
- URL: https://github.com/japrozs/see
- Owner: japrozs
- Created: 2022-01-30T09:17:31.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-02-05T13:17:48.000Z (almost 3 years ago)
- Last Synced: 2024-11-11T05:43:48.661Z (2 months ago)
- Topics: ansi, c, deadlocks, gcc, hardware, low-level, makefile, mutex, network, programming
- Language: C++
- Homepage:
- Size: 115 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# see
This repository contains the code I commonly write while trying to improve my skills in the `C programming language`(and `C++`).
## Code structures
| File/folder | Description |
| ------------------------ | ------------------------------------------------------------------------- |
| [`unions`](unions) | `Learning about C structures and unions` |
| [`server`](server) | `Write a multithreaded server in C using pthread` |
| [`mutex`](mutex) | `Understand about mutex locks and race conditions in concurrent programs` |
| [`network`](mutex) | `Use curl lib to download certain files and learn network protocols` |
| [`bitfields`](mutex) | `Bitfields and bit operators :: OP_A \| OP_B \| OP_C` |
| [`cmake`](mutex) | `Learn more about Cmake build system` |
| [`simulator`](simulator) | `Covid-19 Simulator written in C++` |
| [`bgc`](bgc) | `Solutions to Beej's guide to C programming` |
| [`malloc`](malloc) | `Custom malloc allocator written in C` |