Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write an assembly program that will read in a person s name and then print it in lastname, firstname [ middle name ] order. The

Write an assembly program that will read in a persons name and then print it in lastname, firstname [middle name] order. The notation [middle name] means zero or more middle names.You will need to write a procedure that will read in characters until the enter key is pressed. Store the characters in an array of characters defined in your data segment. As you read the characters you will need to count the number of characters entered by the user, this may also be stored in a data segment variable. The maximum length of a name will be 80 characters.
You will then need to start at the right end of the name and search backwards for a blank. At this point, you can now print out the last name, a comma, and go back to the beginning of the array and print the rest of the name.
Make sure to properly test you program before submitting it. You should test single names such as Rihanna, no name (hit enter key immediately), names with no middle name, and multiple middle names.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

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

Transact SQL Cookbook Help For Database Programmers

Authors: Ales Spetic, Jonathan Gennick

1st Edition

1565927567, 978-1565927568

More Books

Students also viewed these Databases questions

Question

Identify four applications of HRM to healthcare organizations.

Answered: 1 week ago