I would like to know how it's possible to output a quotation mark inside a string literal? For example: " " ". Every time I try to do this, codeblocks thinks that I'm trying to add another string literal after another one.
1 2 3 4 5 6 7 8 9 10
#include <iostream>
usingnamespace std;
int main ()
{
cout << " "" << "\n";
}