We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
It's so easy but the blocked code made it complicated...
Here is my procedure...
#include<stdio.h>#include<string.h>intmain(){inttotal_number_of_books[100]={0};//total number of books in each selvesinttotal_number_of_shelves;inttotal_number_of_pages[100][100]={0};// Number of pages in each selves on each book numberscanf("%d",&total_number_of_shelves);inttotal_number_of_queries;scanf("%d",&total_number_of_queries);while(total_number_of_queries--){inttype_of_query;scanf("%d",&type_of_query);if(type_of_query==1){intx,y;scanf("%d %d",&x,&y);total_number_of_books[x]+=1;total_number_of_pages[x][total_number_of_books[x]-1]=y;}elseif(type_of_query==2){intx,y;scanf("%d %d",&x,&y);printf("%d\n",total_number_of_pages[x][y]);}else{intx;scanf("%d",&x);printf("%d\n",total_number_of_books[x]);}}return0;}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Dynamic Array in C
You are viewing a single comment's thread. Return to all comments →
It's so easy but the blocked code made it complicated... Here is my procedure...