Print text within double quotes (” “).
This may seem easy but beginners may get puzzled while printing text within double quotes.
// CPP program to print double quotes
#include<iostream>
int main()
{
std::cout << "\"Code Vidyalay\"";
return 0;
}
OUTPUT:
"Code Vidyalay"
This may seem easy but beginners may get puzzled while printing text within double quotes.
// CPP program to print double quotes
#include<iostream>
int main()
{
std::cout << "\"Code Vidyalay\"";
return 0;
}
OUTPUT:
"Code Vidyalay"