Skip to content

Instantly share code, notes, and snippets.

View nitish-pattanaik's full-sized avatar
🎯
Focusing

Nitish Pattanaik nitish-pattanaik

🎯
Focusing
View GitHub Profile
@nitish-pattanaik
nitish-pattanaik / da_macro.c
Created March 6, 2025 04:59
Dynamic array implementation in pure C23. Type agnostic and macro based.
#include <stdio.h>
#include <stdlib.h>
#define DA_INIT_CAP 256U // Initial Capacity
// Define the structure
#define DA_DEFINE(name, type) \
typedef struct { \
type *items; \
size_t count; \