Use tags (to make it look purdy), when you click "new post", there will be a thing beside the little bow that says "Format:" with a bunch of buttons, for code click the <> button and put the code between the things that come up with code and /code in square brackects.
63 int low = findLowNumber(numbers, SIZE);
// Function to find the lowest number
87 int findLowNumber(int numbers[], int SIZE)
88 {
89 int lownumber = numbers[0];
90 for (int i = 0; i < SIZE; i++)
91 {
92 if (numbers[i] < lownumber)
93 {
94 lownumber = numbers[i];
95 }
96 }
97 return lownumber;
98 }
Those are line numbers?!?! I was wondering what the numbers on the side were, you don't need to include those, as you can now see, when you post code, it makes line numbers automatically.
int findLowIndex(int numbers[], int SIZE){
int lownumber = 0;
for (int i = 0; i < SIZE; i++)
if (numbers[i] < lownumber)
lownumber = i;
return lownumber;
}