21 lines
434 B
C
21 lines
434 B
C
#include "stack.h"
|
|
int main() {
|
|
Stack *stack = createStack(8);
|
|
if (stack == NULL) {
|
|
printf("Stack creation failed\n");
|
|
return 1;
|
|
}
|
|
int i = 7;
|
|
int j = 8;
|
|
push(stack, i);
|
|
push(stack, j);
|
|
printf("%d\n", peek(stack));
|
|
printf("%d\n", search(stack, i));
|
|
pop(stack);
|
|
int k = 9;
|
|
push(stack, k);
|
|
printStack(stack);
|
|
deleteStack(stack);
|
|
return 0;
|
|
}
|