#include<stdio.h> #include<stdlib.h> #define MAX 8 typedef struct { int data[MAX]; int top; }SeqStack; SeqStack* init()