1.
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!
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.