Using the windows 32 framework , write an assembly
language program ;
write a procedure to read a string and
shift each character of the string by one. As an example, if your
input string is Abcz,
your output should be Bcda. Note that you must test your string for
non-alphabetic
characters (such as numbers and special characters). If there are
non-alphabetic characters, you should terminate your program with
an appropriate message. You should
display your converted string using the...