mirror of
https://github.com/TheAlgorithms/C
synced 2024-11-22 05:21:49 +03:00
Update MERGENR.C
Added output of the program
This commit is contained in:
parent
a652d51791
commit
2bdf7732d8
@ -80,3 +80,22 @@ int main() //main function
|
||||
printf("%d " , x[i]) ;
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* Output of the Program*/
|
||||
/*
|
||||
Enter the number of elements: 5
|
||||
Enter the elements:
|
||||
15
|
||||
14
|
||||
13
|
||||
12
|
||||
11
|
||||
14 15 12 13 11
|
||||
|
||||
12 13 14 15 11
|
||||
|
||||
11 12 13 14 15
|
||||
|
||||
Sorted array is as shown:
|
||||
11 12 13 14 15
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user