***C Programming*** Write a program to find whether the array of integers contain a duplicate number Use functions - you
Posted: Fri May 20, 2022 2:51 pm
***C Programming*** Write a program to find whether the array of integers contain a duplicate number Use functions - you must have a least these functions i. main() ii. void read_array(parameters,...) – to allow user to read the elements into the array iii. void display_array(parameters....) – to print the elements of the array iv. you can create other functions as needed NO GLOBAL Variables. Sample test Run; Enter the size of the array:6 1 2 3 3 4 5 The numbers you entered are: 123345 Duplicate number 3 found at location 2 and 3