C - Write program to display text with quotation

Requirements

Write code to display the following text:

"Hey," said the code, "I said no bug!" 
  

Hint

Demo

#include <stdio.h>

int main()/* w w  w.j a v  a  2s. co m*/
{
    printf("\"Hey,\" said the code, \"I said no bug!\"\n");
    return(0);
}

Result

Related Quiz