Untitled
unknown
plain_text
3 years ago
306 B
7
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...