Question: Write a program that gets a string from the user and stores the string in a buffer. Then scan the string and separate all small
- Write a program that gets a string from the user and stores the string in a buffer. Then scan the string and separate all small alphabets in another buffer. Then print the buffer
Hint:
cmp al, 13
JE En
mov [esi], al
inc esi
call scan
scan PROC
mov al,[esi]
cmp al,'a'
JB nope
cmp al, 'z'
JA nope
Step by Step Solution
3.36 Rating (152 Votes )
There are 3 Steps involved in it
Solution Code INCLUDE irvine32inc data MSG byte Zaibis COAL LAB JOURNAL 6 0 Data ... View full answer
Get step-by-step solutions from verified subject matter experts
