hw09 - Arrays 2
Arrays and Sorting

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
      • Hint: There should be at least two.
    • For main() and each of your functions, write appropriate pseudocode
  • Develope your code in arrays2.c to implement the pseudocode.

From Linux on the GL machine: