![]() |
CMSC104Problem Solving & Computer Programming |
Make sure that you follow all the coding standards
Write an interactive application that accepts a set of integer values and stores them in an array. The program should establish minimum and maximum values it will accept. The array should be displayed to the user. Next the application will sort the array in ascending order and display the sorted array. Use the Bubble Sort to sort the array.
Before you start coding, design and pseudocode your problem
Create a new file called arrays2.txt At the top, list the basic functions the program will have to perform
Develope your code in arrays2.c to implement the pseudocode.Hint: There should be at least two.
For main() and each of your functions, write appropriate pseudocode
From Linux on the GL machine:Create a ./CMSC104/hw8 directory for your homework. Compile the program:
gcc -o arrays2 arrays2.c
Run the program to make sure it works:./arrays2
Use the SUBMIT utility to turn in the homework.submit cs104_grasso hw09 arrays2.txt arrays2.c arrays2