Declare a string variable named oneSpace and initialize it to a string consisting of a single space.

LANGUAGE: C++

CHALLENGE:

Declare a string variable named oneSpace and initialize it to a string consisting of a single space.

SOLUTION:



string oneSpace = " ";