Skip to content

Instantly share code, notes, and snippets.

View michal-weglarz's full-sized avatar
🐳

Michał Węglarz michal-weglarz

🐳
View GitHub Profile
@michal-weglarz
michal-weglarz / dynamic_array.c
Created October 16, 2025 22:45
Dynamic Array in C
#include <stdio.h>
#include <stdlib.h>
typedef struct {
int *items;
size_t length;
size_t capacity;
} IntArray;
void IntArray_push(IntArray *arr, int item) {