Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将此代码转换为 MIPS?我不明白如何在 MIPS 中转换输入字符指针中的每个字符。
void toUpper(char *s) { int n = strlen(s); int i; for (i = 0; i < n; i++) { s[i] &= 0xdf; } }