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