C++
char c = 'a'; // Character char* s = "abc\ndef"; // Null-terminated C-string
PS
> $a = 42 > Write-Output ('The answer is ... ' + $a) # Verbatim string The answer is ... 42 > Write-Output "The answer is`n... $a" # Expandable string The answer is ... 42