Question: C programming: Write a C program to read 25 integers and to store them in an array. Then, the program is to replace the duplicated
C programming:
Write a C program to read 25 integers and to store them in an array. Then, the program is to replace the duplicated values with -11. Use pointer arithmetic to process the array. For example, if the array were {5, 5, 5, 5, 5} the program should make it {5, -11, -11, -11, -11} and if it were {-2, 3, -2, 24, 3} it should make it {-2,3, -11, 24, -11}.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
