let header = "#include <stdio.h>\n#include <stdlib.h>\n\n#define STACK_SIZE 10240\n#define REG_SIZE 1024\n\ntypedef union {int i; float f;} memory_t;\nmemory_t stack[STACK_SIZE];\nmemory_t reg[REG_SIZE];\n\n"