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 アセンブラーに変換するにはどうすればよいですか
#include <stdio.h> void func() { static int x = 0; printf("%d\n", x); x++; } int main() { func(); func(); func(); return 0; }
MIPS における静的変数アナロジーとは何かがわかりません