Feb 22, 2017 at 3:15am
Hi,
Could anyone please tell me how to make the output the double quotation mark"" in the following code?
Only if I change that to single quotation mark 'dog', the problem can be sloved. But if I want to use "dog", how do I make it?
Many thanks!
1 2 3 4 5 6
|
#include <iostream>
int main ()
{
std::cout << " "dog" ";
return 0;
}
|
Last edited on Feb 22, 2017 at 3:19am
Feb 22, 2017 at 3:34am
Thank you very much for your help, integralfx.