Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Rewrite this program using pointer arithmetic and eliminate the loop index variables and all use of the [] operator in the roll function. As part

Rewrite this program using pointer arithmetic and eliminate the loop index variables and all use of the [] operator in the roll function.

As part of the solution, write and call the function roll() with the following prototype. The roll function should roll the first three elements of the array a1 by moving the third element of the array to the first in the output array a2. void roll(int *a1, int n, int *a2)

The roll() function should use pointer arithmetic not subscripting to visit array elements. In other words, eliminate the loop index variables and all use of the [] operator in the function.

3) In the main function, ask the user to enter the length of the array, declare the array with the length, read in the values for the array and call the roll function. The main function should display the result.

#include

// Prototype

void roll(int *a1, int n, int *a2);

void main() {

// Store size of array; int size; printf("Enter the size of array ");

// Input size of array scanf("%d",&size);

// Making two array. int a1[size], a2[size];

// fill a1 with user input. for(int i=0; i < size; i++) { scanf("%d",&a1[i]); } printf(" ");

// print a1 for testing and checking correctness. for(int i=0; i < size; i++) { printf("%d ",a1[i]); } printf(" ");

// calling roll function roll(a1,size,a2); printf(" "); }

void roll(int *a1, int n, int *a2) {

// roll function login for(int i=0; i < n; i++) { if(i == 0) a2[i] = a1[2]; else if(i == 1) a2[i] = a1[0]; else if(i == 2) a2[i] = a1[1]; else a2[i] = a1[i]; }

// printing array

for(int i=0; i < n; i++) { printf("%d ",a2[i]); }

}

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

Mastering Apache Cassandra 3 X An Expert Guide To Improving Database Scalability And Availability Without Compromising Performance

Authors: Aaron Ploetz ,Tejaswi Malepati ,Nishant Neeraj

3rd Edition

1789131499, 978-1789131499

More Books

Students also viewed these Databases questions

Question

Does it avoid use of underlining?

Answered: 1 week ago