Skip to content

Instantly share code, notes, and snippets.

View tobyguelly's full-sized avatar
Studying and Researching....

Tobias Guelly tobyguelly

Studying and Researching....
View GitHub Profile
@tobyguelly
tobyguelly / dynamic.c
Created May 9, 2024 11:32
Implementation of a Dynamic Array in C
#include <stdlib.h>
#include <printf.h>
typedef struct{
int* data;
size_t size;
size_t capacity;
} dynamic_t;
dynamic_t new_dynamic() {