Question: Final_Pa rt_3 In this exercise you will write an assembly language function that changes the case of each character within a string. The function accepts

Final_Pa rt_3 In this exercise you will write an assembly language function that changes the case of each character within a string. The function accepts a pointer to the target string as its only parameter: int SwapCase(char *string); The function must convert each lowercase character to uppercase and each uppercase character to lowercase. Numbers, whitespace characters, and punctuation characters shou be ignored. You are provided with a program that prompts the user for the string and prints the string a the change in case. Here is a sample output from the program: Enter a string: This is a samPle STRING. Your string before SwapCase: This is a samPle STRING. Your string after SwapCase: tHIS IS A SAMPLE string
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
