What is the output of the program?

What is the output of the program?
#include #include using namespace std;
int main()
{ string s1[]= {“H” , “t” }; string s;
for (int i=0; i<2; i++) { s = s1[i]; if (i==0) s.insert(1,"ow"); else s.push_back('o'); cout << s; } return( 0 ); } A. It prints: Hoto
B. It prints: Ht
C. It prints: toHo
D. It prints: Howto

Download Printable PDF. VALID exam to help you PASS.

Posted in: CPA

Leave a Reply

Your email address will not be published. Required fields are marked *


The reCAPTCHA verification period has expired. Please reload the page.