Write a procedure named Str_remove that removes n characters from a string. Pass a pointer to the

Question:

Write a procedure named Str_remove that removes n characters from a string. Pass a pointer to the position in the string where the characters are to be removed. Pass an integer specifying the number of characters to remove. The following code, for example, show how to remove "xxxxx" from target:
.data
target BYTE "abcxxxxdefghijklmop", 0
.code
INVOKE Str_remove, ADDR [target+3], 4
Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Related Book For  book-img-for-question
Question Posted: