Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a program that uses a function to reverse a list of integers. The function is to receive a pointer to the first item along

Write a program that uses a function to reverse a list of integers. The function is to receive a pointer to the first item along with the number of items and use pointer arithmetic to access the items. Arrays are NOT permitted in the function.

In the main program

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.

image text in transcribedimage text in transcribedPlease explain this code. Also what is missing?

\} void swap (int \&a, int &b) int temp; temp =a; a=b; b=temp

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Structured Search For Big Data From Keywords To Key-objects

Authors: Mikhail Gilula

1st Edition

012804652X, 9780128046524

Students also viewed these Databases questions