Q72
What will be the output of the following C++ code? #include #include using namespace std; int main () string str ("Steve jobs"); unsigned long int found = str.find_first_of("aeiou"); while (found != string :: npos) str[found] = '*'; found = str.find_first_of("aeiou", found + 1); cout << str << ' '; return 0;
A.
Steve
B.
jobs
C.
St*v* j*bs
AnswerD.
St*v*
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board