Write a program in C++ that inputs data into an array. It inputs a value from the user and searches this value in the array using sequential search.
Write a program in C++ that inputs data into an array. It inputs a value from the user and searches this value in the array using sequential search. If the entered value is found in the array, it displays the position of the value in the array; otherwise, it displays the message “Value not found”….