C++20 sections · 1024 units
Open in CourseQuiz: Concatenation
Test understanding
Check Your Understanding
What does string s = "A"; s += "B"; s = s + "C"; produce?
- A."BC"
- B."ABC"
- C."AC"
- D."AB"
Test understanding
What does string s = "A"; s += "B"; s = s + "C"; produce?