Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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++

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` |