aboutsummaryrefslogtreecommitdiffstats
path: root/test_deliverable/testcases/test_SORT_driver.c
blob: bf3bf13c2384b01a1ebf78f26bf27990b8d5a843 (plain)
1
2
3
4
5
6
7
8
int sort(int *, int);

int main()
{
	int x[5]={5, 2, 3, 7, 4};
	sort(x, 5);
	return !( x[0]==2 && x[1]==3 && x[2]==4 && x[3]==5 && x[4]==7 );
}