50.7k views
5 votes
Which of the following code segments prints a single line containing hello there with the words separated by a single space?

std::cout<<"hello";
std::cout<<" there"

User ElpieKay
by
7.8k points

1 Answer

7 votes

Answer:

std::cout << "hello" << " there";

Step-by-step explanation:

User Voglster
by
8.4k points