vector.h
public text v1 · immutable#include <stdlib.h>
struct myvector *create(int length);
void distroy(struct myvector *vector);
void set(struct myvector *vector, int pos, float value);
float get(struct myvector *vector, int pos);
struct myvector
{
float *array;
int lenght;
};