Use a one-dimensional C-style array to solve the following problem. Read in up to 20 numbers from the keyboard, each of the numbers should be between 10 and 100, inclusive. As each number is read, add the number to the array if it is not a duplicate of a number already read. If it is a duplicate, print out the word "duplicate." You may terminate the input of numbers to the array if a zero is input. Use a function to return the value of true or false if an input number is already in the array. SAMPLE RUN Enter a number from 10 to 100 (zero to stop) up to 20 numbers: 12 1: Your input: 12 Enter a number from 10 to 100 (zero to stop) up to 20 numbers: 46 2: Your input: 46 Enter a number from 10 to 100 (zero to stop) up to 20 numbers: 91 3: Your input: 91 Enter a number from 10 to 100 (zero to stop) up to 20 numbers: 2 That number is not allowed. Enter a number from 10 to 100 (zero to stop) up to 20 numbers: 46 46 is a duplicate Enter a number from 10 to 100 (zero to stop) up to 20 numbers: 63 4: Your input: 63 Enter a number from 10 to 100 (zero to stop) up to 20 numbers: 0 Your list of non-duplicating numbers is: 12 46 91 63 Press any key to continue .