Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

1. Compile and run the following program that defines 2 pointer variables on a function, reads 3 integer numbers and prints out the numbers sorted

image text in transcribed
1. Compile and run the following program that defines 2 pointer variables on a function, reads 3 integer numbers and prints out the numbers sorted in ascending order. #include void sort(int, int *); int main() int a, b, c: printf("Please enter 3 integers: "); scanf("d d ed", ta, tb, cc): sort(a, b) sort(a, sc): sort (&b, se) printf("The sorted numbers: td td sd ", a, b, c): return 0; ) Page 4 of 5 CS 1160, Computing Fundamentals-Lab Pointers Week of an 2. 2021 void sort(int *x, int *y) (int temp: if (x > *y) temp - *x: *x*y: *y = temp:) Complete the table below: numbers Sorted numbers 8.7.12 0.6.-3 2. Modify the above program so that the program can sort an array of 7 integers in ascending order. Test the program by your own data. 3. Modify your program to include a function named maxm which finds and returns the max of the two numbers. The addresses of x. Y, and must be passed as parameters to the function mam

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

Database Systems An Application Oriented Approach Complete Version

Authors: Michael Kifer, Arthur Bernstein, Richard Lewis

2nd Edition

0321268458, 978-0321268457

More Books

Students also viewed these Databases questions

Question

If E[Y|X] = 1, show tha Var(XY) Var(X)

Answered: 1 week ago

Question

How can we visually describe our goals?

Answered: 1 week ago

Question

What metaphors might describe how we work together?

Answered: 1 week ago

Question

What are some of the possible scenes from our future?

Answered: 1 week ago