+ 3
Delimiters in c++ refer to characters that separate sub-strings in strings. For example, when parsing a string like this: 123,231,456 the delimiters would be the commas. In a sentence, the delimiters could be spaces and commas. When using the getline() function, it automatically uses the newline character '\n' as the delimiter if you haven't specified one yourself.



