Question
Problem Description: Write an assembly program to read three 32-bit signed integers from the user. Write an assembly program that reads a line of input
Problem Description:
Write an assembly program to read three 32-bit signed integers from the user.
Write an assembly program that reads a line of input from the user and counts the total number of characters, and the number of spaces (ASCII character 32). Prompt the user for the line of input and label the outputs.
It can be safely assumed that the line of input from the user will contain at most 255 characters. Note that the system call that reads the string includes the newline character in the returned string. That should be included as one of the characters to count.
Submit the Following File(s):
WordCount.asm
Required Input:
A line of input with at most 255 characters (including the newline). The input may contain some space characters.
Required Output:
Your output should look something like the following example.
Enter a String: This is a test of my program. Number of characters: 30 Number of spaces: 6
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started