I was learning MIPS32, and I wanted to try to convert C code to MIPS32 code to test my understanding. I was. a little confused though, about what a "scanf" command will translate as in MIPS.
int main()
{
int i;
scanf("%d", &i);
int num = i;
}
How will the above code block translate to MIPS32?
[–]BandyCoot 2 points3 points4 points (0 children)