Write a program that asks the user to fill 25 integers in an array "t" and to input an integer value V. The program must
Posted: Mon Jun 06, 2022 2:06 pm
Write a program that asks the user to fill 25 integers in an array "t" and to input an integer value V. The program must search if the value V exists in the array and must remove the first occurrence of V, shifting each following element left and adding a zero at the end of the array. The program must then write the final array. NB: You need to notify the user if the value wasn't found in the array.