Page 1 of 1

Write a program in Assembly language using MIPS instruction set that finds the total number of vowels in the given Engli

Posted: Tue May 24, 2022 8:23 am
by answerhappygod
Write A Program In Assembly Language Using Mips Instruction Set That Finds The Total Number Of Vowels In The Given Engli 1
Write A Program In Assembly Language Using Mips Instruction Set That Finds The Total Number Of Vowels In The Given Engli 1 (45.25 KiB) Viewed 12 times
Write a program in Assembly language using MIPS instruction set that finds the total number of vowels in the given English sentence. Assume that the English sentence contains all lower case letters. The ASCII value of all the vowels are given below: ASCII Value Letter a 97 e 101 i 105 O 111 u 117 Remember, every string in MIPS is terminated by a null character. You may use lb, Ibu, or sb for loading and storing individual characters from/to the array. Sample Input/Output: Enter a Sentence: to be or not to be Number of vowels: 6 Enter a Sentence: the quick brown fox jumps over the lazy dog Number of vowels: 11