Mar 30, 2013 at 3:15pm
You should print the unsorted array, then sort it and then print it again, so something like this:
Unsorted:
2 7 4 6 1
Sorted:
7 6 4 2 1
|
Last edited on Mar 30, 2013 at 3:16pm
Mar 30, 2013 at 3:17pm
So I put print after all this code? Like
1 2 3
|
for(int i = 0; i < 4; i++){
printf("%d",nal[i])
}
|
Last edited on Mar 30, 2013 at 3:18pm