#include #include #include #include int main(int argc, char **argv) { vector_t *vv = vectorInit(VECTOR); vector_t *fv = vectorInit(FLOAT); vectorPrint(vv); vectorPush(fv, &(float){3.14}); vectorPush(fv, &(float){5.123}); vectorPush(vv, fv); vectorPush(vv, fv); vectorPush(vv, fv); vectorPush(fv, &(float){156.1}); vectorPush(fv, &(float){6.124}); vectorInsertAt(vv, 1, fv); vectorPrint(vv); vectorCleanup(vv); vectorCleanup(fv); return 0; }