CJCoding With Joseph

Sort Structs by a Field

A Player struct has an int field score. Read an integer N, then N scores into an array of Player structs. Sort the array by score in ascending order, then print the sorted scores on one line separated by single spaces.

Example: input '4' then '40 10 30 20' prints '10 20 30 40'.

Expected Output:

10 20 30 40
Topics:
Structs
๐Ÿ“ฅ Auto-Input:
4\n40 10 30 20\n
This input is automatically fed to your program's stdin
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.