Question: Please help ASAP. Correct answer will get a thumbs up! This is C language. 1. rite pseudocode and translate it to C-program for the following
Please help ASAP. Correct answer will get a thumbs up! This is C language.


1. rite pseudocode and translate it to C-program for the following problem. Ask users to input a series of integers which are in increasing order Ci.e., an integer is NOT smaller than the one immediately before it). The input will end with the number 0 Assume users will never input more than 10 integers before input 0. After users input all the numbers, ask the user input another number m. Finally print to screen if the number m is in the series. Here is an example of an execution of your program: (the underlined are user inputs) Input a series of integers (ended with 0) 1 3 15 200 Input a number to find from the series 9 The number 9 is not in the series you gave You have to use an array to store the input numbers. You have to use the search method discussed in class (see most recent version of lecture note L9functions) on how to find the given number (9 in the example above) from the given series. For the subtask/subprogram of storing the series into an array, you must write and use the following function
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
