Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
214 B
2
Indexable
Never
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);

    }

}