+ 7
How to print "Hello world" (with double quotes) in C language and not Hello world ( without double quotes) ????
printf(" " Hello world" ") not working
4 Antworten
+ 28
printf("\"Hello World\"");
to print " use \ before "
+ 11
Use the escape character \
print(" \"Hello World\" ");
- 1
Using \"
- 2
Why do we use escape sequence any one can explain this plss