Question: Exercises 1 and 2 -- Capitalization (2 versions) Declare a string in the data section such as: .data string: .asciiz in a hole in the

Exercises 1 and 2 -- Capitalization (2 versions)

Declare a string in the data section such as: .data

string: .asciiz "in a hole in the ground there lived a hobbit" Notice there are extra spaces in this string. Write an MIPS program that capitalizes the first letter of each word, so that after running your program the data will look like this: .data

string: .asciiz "In A Hole In The Ground There Lived A Hobbit" Easy version (exercise 1): assume that the data comprises only lower case characters and spaces. There may, however, be several spaces in a row (as in "the ground" above). Be sure to capitalize only the first letter of the words. Medium-hard version (exercise 2): Rewrite your program so that it assumes that the data comprises only upper and lower case characters and spaces, and alters a character only if it is lower case, and follows a space or is the first character on the line. For both versions, print the strings before and after translation by using the syscall print string service.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!