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.
charfreq[10]={0};// all index or Initialised with zerochar*s=malloc(1024*sizeof(char));Allocatingmemorydynamicallyscanf("%[^\n]",s);for(inti=0;i<strlen(s);i++){if(s[i]>='0'&&s[i]<='9'){//checking the digit present or not char by charfreq[s[i]-'0']++;}}for(inti=0;i<10;i++)printf("%d ",freq[i]);free(s);
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Digit Frequency
You are viewing a single comment's thread. Return to all comments →