How do i start this one?

The objective of this project is to implement bubble sort algorithm. You need to perform the
following steps:
● Create an integer array of 10 elements.
● Generate random number between 1100
to each of the 10 elements.

I knew that i had to use
1
2
3
 int i = 0;
	srand(time(0));
	int array[10], i;] 


but how do i do it using array?
Last edited on
What have you written so far?

You forgot to ask a question.
Last edited on
Topic archived. No new replies allowed.