USING C LANGUAGE
Write the program whose output sample is shown below. The user asks for 10 random numbers, each is between 0 and 20. The user then selects the number 7. All the random numbers are printed and the program finds out that the user's selection, 7, occurs two times.
How many random numbers: 10 Between 0 and what: 20 whats your number: 7
Random numbers: 5 12 20 8 18 3 7 11 7 10
Your number showed up 2 times.
In your program use these variable names. Feel free to add new variables
int n, upperbound, target, counter;
n is the amount of random numbers (10 in the sample), upperbound (20 in the sample), target is the user's number (7 in the sample), counter (2 in the sample).