Vidyalelo
C++ Programming · Q72

Arrays and Strings in C++

Programming · C++ Programming · question 72

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
Answer
D.
St*v*

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board