Write a full MIPS program that provides the exact same output as the reference C
ID: 3672925 • Letter: W
Question
Write a full MIPS program that provides the exact same output as the reference C code. The code asks the user for an input string and removes all space characters from it. The program then prints the resulting string without spaces. 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.
int main // Read string char s[100]; printf("Enter string: "); gets(s).; // Remove spaces char c; int old-index = 0; int new-index = 0; do //Read character /7 old posltion moves ahead old_index++; // If it's a space, ignore if(c=-'') continue; // Copy character new-index] c = // New position moves ahead new index+ } while (c); Print result printf("New string: %s ", s);Explanation / Answer
Answer:)
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.