Untitled
unknown
plain_text
3 years ago
214 B
10
Indexable
void showBooks(Stack *s1, Stack *s2) {
printf("Books stack:\n");
while(!STACK_isEmpty(*s1)) {
printf("%d\n",STACK_top(s1));
STACK_push(s2, STACK_top(s1));
STACK_pop(s1);
}
}Editor is loading...