Tuple with get element feature
/****************************************************************************** New Era Datastructure Designed by Daipayan Bhowal *******************************************************************************/ #include <stdio.h> #include <stdlib.h> #include <stdarg.h> #include <string.h> typedef enum Type { CHAR, INT, FLOAT, DOUBLE, SHORT, LONG, LONG_LONG, STRING }type_t; typedef struct Tables { int index; int type[64]; void * args[64]; char max_index; } tables; typedef tables* table_t; table_t itable(int num,...) // init_table { va_list valist; va_start(valist, num); static int counter =0; table_t t = (table_t)malloc(sizeof(tables)); t->index= ++counter; for(int j=0; j< num; j++) { ...