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
Thank you very much for your help, integralfx.