#include <stdio.h> #include <stdlib.h> #include <stdbool.h> #include <string.h> #include <malloc.h> #include <memory.h> #define MAX 200 struct sNode { void* data; struct sNode* next; }; typedef struct LStack { struct sNode top; int size; } LStack...