I used the printf() command to produce the output seen below:
printf("She said time flies like an arrow, but fruit flies like a banana.");
nonetheless, I want to double-quote the original phrase, so the output will be
without affecting the double quotes that the printf() command uses to enclose the string literal.
How can I go about this?