Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.
Question: Read a sentence with period at the end. Display the sentence so that all vowels are in uppercase sample I/O Enter a sentence: proud is...
Question: Read a sentence with period at the end. Display the sentence so that all vowels are in uppercase
sample I/O
Enter a sentence: proud is self-respect.
Output: prOUd Is sElf-rEspEct.
I have written a c++ code for this, I need to translate that to assembly language, we use c++to implement the assembly language. I have written some code for transferring a and e to uppercase, but still get wrong, can you help me with that? Thanks!
c++:
#include <iostream>
#include <string>
using namespace std;
char a[50];
int i;
void read() {