Hello
i have a a struct which contains the below
1
10
11
2
3
But i need this to be in numeric order, ie
1
2
3
10
11
below is my code
do {
fprintf(fReport, "List Name = %d\n", LIST[t].name );
t++;
} while( t != k )
How can i bring them back in numeric order?