how to put quotes inside string c

C
char myString = "She said, \"You deserve a treat!\" "; 
// put a \ before the quotes 
//output would be : She said, "You deserve a treat!"
Source

Also in C: