Question: 2. Write a program called three.c that includes the follwing funtion: int same_three(int a[ ], int n); Here is the actual directions Write a program
2. Write a program called three.c that includes the follwing funtion:
int same_three(int a[ ], int n);
Here is the actual directions

Write a program three c that include the following function int same three (int al, int n); The same three function tests whether an integer array has three numbers with the same value. The function returns the number if there are three numbers with the same value and return 0 if not. Hint: use three nested loops. Assume that 1) The array has at least three elements. 2) All elements are non zero integers. 3) There are no more than one set of three numbers with the same value. In the main function, ask the user to enter the length of the array, declare the array with the length, and call the function. The main function should display the result. Sample run #1: Enter the lengthf the array: 5 Enter the elements of the array: 3 4 4 4 9
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
