Struct SeqStack {
Int stack [10000];
Int top;
} * S;
Struct SeqCqueue {
Int the front;
Int rear;
Int count;
Int the queue [10000].
} * Q;
Int main ()
{
Int X, I, n.
S - & gt; Top=0;//initialize the stack
Q - & gt; The front=0;//initialize the queue
Q - & gt; Rear=0;
Q - & gt; count=0;