fork download
  1. #include <stdio.h>
  2.  
  3. struct countyTotals
  4. {
  5. int totalCorkCodes;
  6. int totalDublinCodes;
  7. int totalGalwayCodes;
  8. int totalLimerickCodes;
  9. int totalTiperaryCodes;
  10. int totalWaterfordCodes;
  11. int totalInvalidCountryCodes;
  12. };
  13.  
  14. // add function block comments
  15. struct countyTotals freqOfIrishCounties(char countyArrayList[], int size)
  16. {
  17.  
  18. struct countyTotals myCountyTotals = {0,0,0,0,0,0,0}; // holds the country counts
  19. // and initializes them to zero
  20.  
  21. // Review each of the county codes in the array
  22. for(int i = 0; i < size; i++)
  23. {
  24.  
  25. switch (countyArrayList[i]) //Structure variable countyArrayList
  26. {
  27.  
  28. case 'C': // Cork uppercase and lowercase accepted
  29. case 'c':
  30. myCountyTotals.totalCorkCodes++; // add count if in category
  31. break; //signify end of cases
  32.  
  33. case 'D': // Dublin uppercase and lowercase accepted
  34. case 'd':
  35. myCountyTotals.totalDublinCodes++; // add count if in category
  36. break;
  37.  
  38. case 'G': // Galway uppercase and lowercase accepted
  39. case 'g':
  40. myCountyTotals.totalGalwayCodes++; // add count if in category
  41. break;
  42.  
  43. case 'L': // Limerick uppercase and lowercase accepted
  44. case 'l':
  45. myCountyTotals.totalLimerickCodes++; // add count if in category
  46. break;
  47.  
  48. case 'T': // Tipperary uppercase and lowercase accepted
  49. case 't':
  50. myCountyTotals.totalTiperaryCodes++; // add count if in category
  51. break;
  52.  
  53. case 'W': // Waterford uppercase and lowercase accepted
  54. case 'w':
  55. myCountyTotals.totalWaterfordCodes++; // add count if in category
  56. break;
  57.  
  58. default: // Invalid country codes
  59. myCountyTotals.totalInvalidCountryCodes++; // add count if in category
  60. break;
  61.  
  62. } // switch
  63. } // for
  64.  
  65. return (myCountyTotals);
  66.  
  67. } // freqOfIrishCounties
  68.  
  69. int main(void) {
  70. char counties[] = {'c', 'C', 'd', 'D', 'g', 'G', 'L', 'l', 'T', 't', 'W', 'w', 'r', 'j', 'm'};
  71. int size = sizeof(counties) / sizeof(counties[0]); // define size of array
  72.  
  73. struct countyTotals totals = freqOfIrishCounties(counties, size); // Store results from countytotals
  74.  
  75. printf("Cork codes: %d\n", totals.totalCorkCodes); //Print Cork total stored
  76. printf("Dublin codes : %d\n", totals.totalDublinCodes); //Print Dublin total stored
  77. printf("Galway codes : %d\n", totals.totalGalwayCodes); //Print Galway total stored
  78. printf("Limerick codes : %d\n", totals.totalLimerickCodes); //Print Limerick total stored
  79. printf("Tipperary codes : %d\n", totals.totalTiperaryCodes); //Print Tipperary total stored
  80. printf("Waterford codes : %d\n", totals.totalWaterfordCodes); //Print Waterford total stored
  81. printf("Invalid codes : %d\n", totals.totalInvalidCountryCodes); //Print Invalid total stored
  82.  
  83. return 0;
  84. }
Success #stdin #stdout 0.01s 5292KB
stdin
Standard input is empty
stdout
Cork codes: 2
Dublin codes : 2
Galway codes : 2
Limerick codes : 2
Tipperary codes : 2
Waterford codes : 2
Invalid codes : 3