Write a procedure named Str_concat that concatenates a source string to the end of a target string. Sufficient space must exist in the target string to accommodate the new characters. Pass pointers to the source and target strings. Here is a sample call:

Respuesta :

Using the knowledge in computational language in C++ it is possible to write a code in a way that will have pointers and target strings.

The code can be written as:

        mov dl,al

        mov ah,02

        int 21h

        mov al,bl

        and al,00fh

        cmp al,09

        jbe number2

        add al,07

number2:  add al,30h

         mov dl,al

         mov ah,02

         int 21h

ret

display1 endp

accept_string proc near

mov ah,0ah      

mov dx,offset str1  

int 21h

ret

accept_string endp

end start

end

See more about code c++ at brainly.com/question/18502436

#SPJ1

Ver imagen lhmarianateixeira
Ver imagen lhmarianateixeira