fork download
  1. #include <stdio.h>
  2.  
  3. struct countyTotals{
  4. int totalCorkCodes;
  5. int totalDublinCodes;
  6. int totalGalwayCodes;
  7. int totalLimerickCodes;
  8. int totalTiperaryCodes;
  9. int totalWaterfordCodes;
  10. int totalInvalidCountyCodes;
  11. };
  12.  
  13. struct countyTotals countCntyOccur (char cntyCodes[], int size);
  14.  
  15. int main(void) {
  16.  
  17. char cntyCodes[]= {'C', 'c', 'E', 'G', 'G', 'L', 'l', 'l', 'T', 'W', 'J', 'd'};
  18. struct countyTotals countyFreqs = countCntyOccur(cntyCodes,12);
  19. printf("Cork County: %i\n", countyFreqs.totalCorkCodes);
  20. printf("Dublin County: %i\n", countyFreqs.totalDublinCodes);
  21. printf("Galway County: %i\n", countyFreqs.totalGalwayCodes);
  22. printf("Limerick County: %i\n", countyFreqs.totalLimerickCodes);
  23. printf("Tiperary County: %i\n", countyFreqs.totalTiperaryCodes);
  24. printf("Waterford County: %i\n", countyFreqs.totalWaterfordCodes);
  25. printf("InvalidCountyCodes: %i\n", countyFreqs.totalInvalidCountyCodes);
  26.  
  27. return 0;
  28. }
  29.  
  30.  
  31. struct countyTotals countCntyOccur(char cntyCodes[], int size){
  32.  
  33. int totalCorkCodes=0;
  34. int totalDublinCodes=0;
  35. int totalGalwayCodes=0;
  36. int totalLimerickCodes=0;
  37. int totalTiperaryCodes=0;
  38. int totalWaterfordCodes=0;
  39. int totalInvalidCountyCodes=0;
  40.  
  41.  
  42. for (int i = 0; i < size; i++) {
  43. // Switch statement
  44. switch (cntyCodes[i]) {
  45. case 'C':
  46. case 'c':
  47. totalCorkCodes+=1;
  48. break;
  49.  
  50. case 'D':
  51. case 'd':
  52. totalDublinCodes+=1;
  53. break;
  54.  
  55. case 'G':
  56. case 'g':
  57. totalGalwayCodes+=1;
  58. break;
  59.  
  60. case 'L':
  61. case 'l':
  62. totalLimerickCodes+=1;
  63. break;
  64.  
  65. case 'T':
  66. case 't':
  67. totalTiperaryCodes+=1;
  68. break;
  69.  
  70. case 'W':
  71. case 'w':
  72. totalWaterfordCodes+=1;
  73. break;
  74.  
  75. default:
  76. totalInvalidCountyCodes+=1;
  77. break;
  78. }
  79.  
  80. }
  81.  
  82. struct countyTotals specificCountyTotals = {totalCorkCodes, totalDublinCodes, totalGalwayCodes,
  83. totalLimerickCodes, totalTiperaryCodes,
  84. totalWaterfordCodes, totalInvalidCountyCodes};
  85.  
  86. return specificCountyTotals;
  87.  
  88. }
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
Cork County: 2
Dublin County: 1
Galway County: 2
Limerick County: 3
Tiperary County: 1
Waterford County: 1
InvalidCountyCodes: 2