Question
declare a large array of 100 integers. Request the user to enter numbers and insert them into the array in order. The user can enter
declare a large array of 100 integers.
Request the user to enter numbers and insert them into the array in order.
The user can enter anywhere from 3 to 100 numbers.
You cannot use array notation to insert the number into the "array"
You must use pointer arithmetic
Call the reverse function with the address of the first element (i.e., a pointer) and the number of items the user entered.
The only declaration permitted in the function is a temporary that is declared as a POINTER to an integer
The function will reverse the items
You cannot use array notation to swap numbers
You must use pointer arithmetic
The main program is to print the reversed numbers using pointer arithmetic to access them.
Please fix my code. Do not rewrite everything. I need help after return 0
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started