Code:
function main()
{
	var Data[6] = {1,7,10,0,12,19};

	sortData(Data,6);

	int i;
	for(i=0; i<6; i++)
	{
		printf("n%.0f", Data[i]);
	}

}