assembly concatenate two strings
问题 I want to concatenate two strings but in my output instead of getting the final concatenated string, I get a line of weird characters and spaces, maybe someone could help me a bit. I want to save the result in s3. Here is the code DATA SEGMENT STR1 DB "ENTER FIRST STRING HERE ->$" STR2 DB "ENTER SECOND STRING HERE ->$" STR3 DB "CONCATEnatedD STRING :->$" STR11 DB "FIRST STRING : ->$" STR22 DB "SECOND STRING: ->$" s1 DB 20 DUP("$") s2 DB 20 DUP("$") s3 db 40 dup(?) NEWLINE DB 10,13,"$" DATA