int main(void) {
    printf("Practice 8 : Test partition\n");
    test_partition();
    printf("\n");
    
    printf("Practice 9 : Test quicksort\n");
    test_quicksort();
    printf("\n");
    
    return 0;
}
int main()
{
	test_partition();

	getchar();
}