C++ Institute CPA-21-02 Question Answer
What is the output of the program?
#include
#include
using namespace std;
int main () {
string s1 = "Hello", s2 = "World";
s2 = s1 + s2;
cout << s2;
return 0;
}
C++ Institute CPA-21-02 Summary
- Vendor: C++ Institute
- Product: CPA-21-02
- Update on: Aug 2, 2025
- Questions: 257