Hi!
I read a string from console with syscall and store it to my .space buffer.
li $v0, 8
la $a0, buffer
la $a1, buffer
syscall
With my string in the buffer i would like to iterate over it and i guess i need to know how long the string in buffer is?
How do i know how long the string is?
Any help woould be greatly appreciated