C lang
1. Create a function HowManyRepeats(), which for n-elemented array will count, how many values saved in array is repeating. That function cannot use any additional auxiliary array. Example: in array {2,2,2,2,2} repeats one value (2), so function returns 1.
2. Create a function HowManyNotRepeat(), which for n-elemented array will count, how many values saved in array is NOT repeating. That function cannot use any additional auxiliary array. Example: in array {2,2,2,2,2} theres no such value, function returns 0.
3. Use created functions in main() for array with constant size, defined by constant, randomly initialized.
In the exercise there may be declared only one array.