Having trouble converting this C code into MIPS
if (integers == 0 && forward != 0)
{
for (char *ptr = str; *ptr != ’\0’; ptr++)
{
if (*ptr >= ’A’ && *ptr <= ’Z’)
continue;
printf("%c\n", *ptr);
}
Having trouble converting this C code into MIPS
if (integers == 0 && forward != 0)
{
for (char *ptr = str; *ptr != ’\0’; ptr++)
{
if (*ptr >= ’A’ && *ptr <= ’Z’)
continue;
printf("%c\n", *ptr);
}