I am currently trying to write a code that takes in a string and outputs that same string with no spaces. Everything in my code currently works, but the outputs don\'t delet
This is another way to remove spaces from the sting and print it back. simply loop the string and ignore spaces.
.text
main:
li $v0, 4
la $a0, prompt
syscall
li $v0, 8
la $a0, input
li $a1, 100
syscall
move $s0, $a0
loop:
lb $a0, 0($s0)
addi $s0, $s0, 1
beq $a0, 32, loop
beq $a0, $zero, done
li $v0, 11
syscall
j loop
done:
jr $ra
.data
prompt: .asciiz "Enter a string: "
input: .space 100