How can I place quote marks around a variable?

Try these 2 steps:

  1. Don't use String: use c-strings.
  2. If you have trouble with escaping the double quotes, use the ASCII value for the double quote (34 or 0x22).