fork download
  1. #include <stdio.h>
  2.  
  3. int frequency (int theArray[], int n, int x);
  4.  
  5. int main(void) {
  6. int theArray[5] = {5, 12, 23, 23, 28};
  7. int xcount;
  8. int x = 23;
  9. int n = 5;
  10. xcount = frequency(theArray, n, x);
  11. printf("%d", xcount); // print output
  12. return 0;
  13. }
  14. // ******************************************
  15. // Function : frequency
  16. //
  17. // Description : shows frequency of variables occuring
  18. //
  19. // Parameters : count - Keep a running count
  20. // frequency - how often variables occur
  21. // TheArray - Holds the numbers to run through program
  22. //
  23. // Returns : Frequency - Frequency of how many times 23 appears
  24. // **************************************************************************
  25. int frequency (int theArray[], int n, int x)
  26. {
  27. int frequency; /* how many times n is found */
  28.  
  29. int count = 0; /* initialize count */
  30.  
  31.  
  32. /* loop through every element in theArray */
  33. for (int i = 0; i < n; ++i)
  34. {
  35. if(theArray[i] == x)
  36. {
  37. ++count;
  38. }
  39. }
  40.  
  41. return count;
  42. }// return count
  43.  
  44.  
Success #stdin #stdout 0.01s 5288KB
stdin
23, 5, 3, 6, 12
stdout
2