#include <string.h> #include "vector131.h" size_t vector_type = 4; int main() { int val = 5; char fun_adjective[8]; vector_t int_vector; strncpy(fun_adjective, "awesome", 8); initialize_vector(&int_vector, vector_type); vector_add_back(&int_vector, &val); destroy_vector(&int_vector); }