Skip to content

Instantly share code, notes, and snippets.

View NaviTheCoderboi's full-sized avatar
🔥
Leveling up!

Navinder Singh NaviTheCoderboi

🔥
Leveling up!
View GitHub Profile
#include <stdio.h>
#include "vector.h"
int main(void) {
Vector* intVector = vInit(sizeof(int));
for (int i = 0; i < 10; i++) {
vPush(intVector, &i);
}