Update MERGENR.C

Added output of the program
This commit is contained in:
Shubham Sah 2020-05-26 21:11:22 +05:30 committed by GitHub
parent a652d51791
commit 2bdf7732d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
*/