MIPS Char Array Reversal translation from c++
问题 My project is to convert the below code, which reverses the order of a string i.e.( string --> gnirts). I have no understanding of how to start the translation into MIPS assembly. Any help or clarification on how to do this project would be greatly appreciated.Even just a similar example would be awesome. #include <iostream> using namespace std; void reverse(char [], int size); void swap(char *x, char *y); int main() { char array[] = "0123456789"; cout << array << endl; reverse(array, 10);