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