Please write a full MIPS assembly program that mimics the behaviour of this C pr
ID: 3672889 • Letter: P
Question
Please write a full MIPS assembly program that mimics the behaviour of this C program.
The following C code shows the proposed algorithm. The string is traversed with two indices, called old_index and new_index, where the latter always takes a value less or equal to the former. When a non-space character is found, the character at position old_index is copied to position new_index, and both indices are incremented. When a space is found, the current character is not copied, and only old_index is incremented. The algorithm stops when a null character is found.Explanation / Answer
This is corresoponding Code for the above C code