Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

Solution Code INCLUDE irvine32inc data MSG byte Zaibis COAL LAB JOURNAL 6 0 Data ... blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Systems A Practical Approach to Design Implementation and Management

Authors: Thomas Connolly, Carolyn Begg

6th Edition Global

132943263, 978-0132943260

More Books

Students also viewed these Programming questions

Question

What internal reasons lead to exporting?

Answered: 1 week ago

Question

Define ethics in terms of how organizations conduct business.

Answered: 1 week ago