Skip to content

Instantly share code, notes, and snippets.

View nureynisow's full-sized avatar
🏠
Working from home

nureynisow nureynisow

🏠
Working from home
View GitHub Profile
#include <stdio.h>
#include <stdlib.h>
#include "sequence.h"
#include "assert.h"
struct sequence_t{
void **t;
int size;
int nb_el;
};
@nureynisow
nureynisow / hello.c
Created April 4, 2014 14:07
Hello World
#include <stdio.h>
int main(int argc, char **argv){
printf("Hello World\n");
}