Write a function to have a user enter some number of integers into an array. The integer values must be between - 100 and + 100 inclusive (+100 and - 100 should be accepted as valid inputs). The integer array and the size of the array are passed into the function through parameters. Do not worry about includes. This is only a function, so there is no main routine. The function should fill the array with valid inputs. For invalid input values, inform the user of the error, but do not count that as a valid input.
+1
Answers (1)
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Write a function to have a user enter some number of integers into an array. The integer values must be between - 100 and + 100 inclusive ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Home » Computers & Technology » Write a function to have a user enter some number of integers into an array. The integer values must be between - 100 and + 100 inclusive (+100 and - 100 should be accepted as valid inputs).