1.
How do you print the sentence She said "yes" to my suggestion. using the
printf() command? Feel free to use the window below to try out some commands.
-
printf("She said \"yes\" to my suggestion."); -
Correct
-
printf("She said "yes" to my suggestion."); -
Not quite. Try again!
-
printf("She said ""yes"" to my suggestion."); -
Not quite. Try again!
-
printf("She said 'yes' to my suggestion."); -
Not quite. Try again!

