C Program to Sort set of strings in alphabetical order using strcmp()

Problem Statement : Write a C Program that will accept set of 5 strings and sort them using strcmp library function and print the result on the screen. Program to sort set of strings in alphabetical order [crayon-6286396a9e106530507518/] Output : [crayon-6286396a9e10f414969327/]

C Program to Implement Bubble Sort in C Programming

Bubble Sort in C : All Passes Program : [crayon-6286396a9e6e5072388659/] What Happens After Each Iteration ? There are 'N' number of Unsorted Elements Total Number of Iterations = N-1 At the End of First Iteration : Largest Element Will get its Exact Final Position At the End of 2nd Iteration : 2nd Largest Element Will get its Exact Final Position . . . . At the End of (N-1)th Iteration : (N-1)th Largest Element Will get its Exact Final Position Output : [crayon-6286396a9e6ee500653821/] Visual Explanation :

C Program to Sort Structures on the basis of Structure Element

Sorting Two Structures on the basis of any structure element and Display Information Program Statement - Define a structure called cricket that will describe the following information Player name Team name Batting average Using cricket, declare an array player with 10 elements and write a program to read the information about all the 10 players and print a team wise list containing names of players with their batting average. [crayon-6286396a9ecaa147663402/] Output : [crayon-6286396a9ecb2907224694/] Explanation of C Program : Step 1 : Accept Data [crayon-6286396a9ecb5471750714/] Step 2 : Sorting two Structures [crayon-6286396a9ecb9932478543/] Using [...]