Answered step by step
Verified Expert Solution
Question
1 Approved Answer
the code must be in c++ HW6-B: Sorting C-String Characters In this question you are required to complete a function that receives a C-String as
the code must be in c++
HW6-B: Sorting C-String Characters In this question you are required to complete a function that receives a C-String as a parameter then sorts its characters as alphabets or noter more details, the function receives a group of characters in a C-String without spaces. The function is supposed to print out a single line that contains the following: - All alphabets (A-Z or a-z) in their order in the C-String followed by all other characters in their order in the C-String without spaces - Number of alphabets - Number of other characters - The word Higher or Lower or Equal There must a single space between each two items. The last word shows if the number of alphabets is Higher,Lower, or Equal than the number of characters in the C-String. For example, if C-String inCS = "Pay100\$ 12 daily", the the output should be: Paydaily100\$ 84 Higher Do not write and submit the main subroutine, or any include statments, these are already written and hidden from you. However, if you want to test your solution in any IDE (e.g., CodeBlocks, CLion, onlinegdb.com), then you will need to write your own main there for testing purposes. IMPORTANT NOTES - Do not change the given functions header. - Do not add any cout statements in the function except for the final answer as specified above. - Do not add any unnecessary spaces and follow the same format regarding spaces and letters case. - Assume cstring and cstdlib libraries are already included. 1234voidcStringsort(constcharincs[]){//Addyourcodehere}Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started