Untitled

 avatar
unknown
plain_text
2 years ago
214 B
5
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...