In an interview I was asked
Print a quotation mark using the printf() function
printf()
I was overwhelmed. Even in their off
Besides escaping the character, you can also use the format %c, and use the character literal for a quotation mark.
%c
printf("And I quote, %cThis is a quote.%c\n", '"', '"');