#include #include #include #define FLAGSIZE_MAX 64#define BUFFER_SIZE 8char *buffer;char *secret;void init() { printf("Welcome to heap challenge!\n"); buffer = (char *)malloc(BUFFER_SIZE); secret = (char *)malloc(BUFFER_SIZE); strncpy(buffer, "hello", BUFFER_SIZE); strncpy(secret, "world", BUFFER_SIZE);}void print_heap() { printf("Heap State:\n"); printf("+------------------..