Skip to content

Latest commit

 

History

History

Dynamic Array in C

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Snow Howler is the librarian at the central library of the city of HuskyLand. He must handle requests which come in the following forms:
1 x y : Insert a book with pages at the end of the shelf.
2 x y : Print the number of pages in the book on the shelf.
3 x : Print the number of books on the shelf.
Snow Howler has got an assistant, Oshie, provided by the Department of Education. Although inexperienced, Oshie can handle all of the queries of types 2 and 3.
Help Snow Howler deal with all the queries of type 1.
Oshie has used two arrays:
int* total_number_of_books; /*



Sample Input 0


Sample Output 0


Explanation 0