Convert the following pseudo-code into assembly language program: Initialize count to 0 Read a character WHILE character
Posted: Sat May 14, 2022 4:11 pm
Convert the following pseudo-code into assembly language
program:
Initialize count to 0
Read a character
WHILE character <> carriage return Do
IF (āAā <= character) and (character <= āZā)
THEN
count = count + 1
END_IF
Read a character
END_WHILE
program:
Initialize count to 0
Read a character
WHILE character <> carriage return Do
IF (āAā <= character) and (character <= āZā)
THEN
count = count + 1
END_IF
Read a character
END_WHILE