How to put quotes in a .print?

void setup()
{
  Serial.begin(9600);
}

void loop()
{
Serial.println(""It has yet to be proven that intelligence has any survival value" ~Arthur C. Clarke")          
}

How can I do this? The compiler sees "" and errors at the start of the quote.

The console says:
In function 'void loop()':
error: expected `)' before 'It

Serial.println("\"It has yet to be proven that intelligence has any survival value\" ~Arthur C. Clarke");

:slight_smile:

Brilliant! Is this in the Arduino reference? I'd like to know where, because I feel there are other gems hiding in the same spot that I've been missing.
Thanks!