7. Which character would you use to display a quotation mark in a string? code example
Example: how to put quotes inside string c
char myString = "She said, \"You deserve a treat!\" ";
// put a \ before the quotes
//output would be : She said, "You deserve a treat!"