subject

// this program uses a bubble sort to arrange an array of integers in // ascending order // place your name here #include using namespace std; // function prototypes void bubblesortarray(int[], int); void displayarray(int[], int); const int size = 5; int main() { int values[size] = { 9, 2, 0, 11, 5 }; cout < < "the values before the bubble sort is performed are: " < < endl; displayarray(values, size); bubblesortarray(values, size); cout < < "the values after the bubble sort is performed are: " < < endl; displayarray(values, size); return 0; } // // displayarray // // task: to print the array // data in: the array to be printed, the array size // data out: none // //

ansver
Answers: 1

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 17:00
Aisha has finished working on a word processing document that contains 15 pages. she has added some special elements in the first three pages, page 9 and 10, and page 15 from the document. she wants to print only these pages to see how they look. which option is the correct way to represent (in the print dialog box) the pages that aisha wants to print
Answers: 3
question
Computers and Technology, 22.06.2019 20:00
Amanda needs to create an informative print brochure for her local library’s fundraiser dinner. what critical detail must she have before she starts designing the brochure?
Answers: 1
question
Computers and Technology, 22.06.2019 21:10
Dameas communication challenge is due to which factor
Answers: 2
question
Computers and Technology, 22.06.2019 23:30
What does 21 pilots middle aged name as a band 15 years prior to them naming their band 21 pilots?
Answers: 1
You know the right answer?
// this program uses a bubble sort to arrange an array of integers in // ascending order // place yo...
Questions
question
Mathematics, 14.10.2019 23:30
Questions on the website: 13722367