problem with quicksort function

Pages: 12
Sigh

This
1
2
for (int list = 0; list < 10; list++)
cout << list;
is complete nonsense

->
1
2
	for (int j = 0; j < 10; j++)
	cout << list[j];
Topic archived. No new replies allowed.
Pages: 12