how to put quotes within quotes in c 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!"
char myString = "She said, \"You deserve a treat!\" ";
// put a \ before the quotes
//output would be : She said, "You deserve a treat!"