Print text within double quotes (” “). | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Print text within double quotes (” “).

This may seem easy but beginners may get puzzled while printing text within double quotes

16th May 2018, 5:33 PM
Kavina
Kavina - avatar
4 Answers
+ 2
printf(" \"hello\" "); let considered done in C
16th May 2018, 5:40 PM
Arun Tomar
Arun Tomar - avatar
+ 2
include <stdio.h> int main() { printf("printf(\"Hello world.\");"); printf("\n"); return 0; } Output: printf("Hello world.");
17th May 2018, 3:59 AM
Kavina
Kavina - avatar
0
It should be a specific ascii character, i dont remember its number. This one: "
16th May 2018, 5:34 PM
Bebida Roja
Bebida Roja - avatar
0
Console.WriteLine("Hello, World"); (I think...)
16th May 2018, 9:33 PM
Plasma701
Plasma701 - avatar