Untitled
Anonymous
plain_text
04/27/2023 5:11 PM
288 B
21
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...