CJCoding With Joseph
15per day
← Back to Question List

Select topics to narrow your question pool, then enable Random to jump to a random question matching your filters.

Topics:
C++ Quiz #19

String Concatenation

easyStrings

What is the output of this code?

📄 Code

1#include <iostream>
2#include <string>
3using namespace std;
4 
5int main() {
6 string first = "Hello";
7 string second = " World";
8 string result = first + second;
9 cout << result << endl;
10 return 0;
11}