#include #include enum enumVarType {INT, FLOAT, CHAR, STRING}; struct symbol { char* name; bool init; enumVarType varType; int offset; int deep; };