- 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 10 times
Write a program in Assembly language using MIPS instruction set that finds the total number of vowels in the given Engli
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
Write a program in Assembly language using MIPS instruction set that finds the total number of vowels in the given Engli
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