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

    1. 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

1 Expert Approved Answer
Step: 1 Unlock

Solution Code INCLUDE irvine32inc data MSG byte Zaibis COAL LAB JOURNAL 6 0 Data ... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!