+ 2
Print text within double quotes (” “).
This may seem easy but beginners may get puzzled while printing text within double quotes
4 odpowiedzi
+ 2
printf(" \"hello\" ");
let considered done
in C
+ 2
include <stdio.h> int main() { printf("printf(\"Hello world.\");"); printf("\n"); return 0; }
Output:
printf("Hello world.");
0
It should be a specific ascii character, i dont remember its number. This one: "
0
Console.WriteLine("Hello, World");
(I think...)