I know how to take single character input and string input. Also I know how to display a self-chosen string using DOS functions with INT 21h. But I was wondering about how to take a string input and display the same string.
When taking string input using:
MOV AH, 0Ah
INT 21h
Where does the string get stored? In case of a single character input and output, the character is stored in the AL register. So knowing the address of the stored string, I can load the address of it in the DX register and display it, right?
Any help is appreciated, thanks in advance...