Untitled
Anonymous
plain_text
04/27/2023 4:56 PM
408 B
17
Indexable
void insertBooks(Stack * stack) {
int cuanto = 0, i = 0;
Element element;
printf("How many books do you want to insert? ");
scanf("%d", &cuanto);
for(i = 0; i < cuanto; i++) {
printf("Book code: ");
scanf("%d", &element);
STACK_push(stack, element);
}
}Editor is loading...