I want to print something like : Welcome "Aditya"
I tried using escape character
string s = "Welcome \"Aditya\"";
But it is printing as : Welcome \"Aditya\"
I have even tried to just print backslash(\
) using string s = "\\"
but instead I got \\
.
Can anyone help me understand why escape character is not working or if I am doing anything wrong here?