7. Given the following code, if the user is prompted to enter a text and he entered "ABC", what is the offset of the "C"
Posted: Thu Jun 02, 2022 8:33 am
7. Given the following code, if the user is prompted to enter a text and he entered "ABC", what is the offset of the "C" character in memory? 1 DATA DRG 1200H DATA1 DB 6,7,6 DUP (FF) MOV AH,0AH MOV DX,OFFSET DATA1 INT 21H A. 1200H B. 1201H C. 1202H D. 1203H 22 4 .CODE