What will happen when you attempt to compile and run the following code?

What will happen when you attempt to compile and run the following code?
#include #include using namespace std; string fun(string, string);
int main()
{ string s=”Hello”; cout << fun(s, " World"); return 0; } string fun(string s1, string s2) { return s1+s2; } A. It will print: Hello World
B. It will print: Hello
C. It will print: World
D. It will print: HW

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.