可以在MIPS中声明指针变量

时间:2017-03-26 12:58:18

标签: mips32

在MIPS中,我们可以在.data指令中定义指针类型变量,然后用null初始化它吗?....必须将以下c代码转换为MIPS程序集:

int main(){
       char str[256];
       int i = 0;
       char *result = NULL;
       scanf("%s",str)l;
       while(str[í] != '\0'){
            if(str[i] == 'm'){
                result = &str[i];
                break;
            }
            i++;
       }
       if(result != NULL)
           printf("Match at address %d\n", result);
       else
           printf("No match\n");
       return 0;
} 

提前感谢。

0 个答案:

没有答案