Search This Blog

Tuesday, July 5, 2022

C Program for Escape sequence \" | Programming with C language

Programming with C language| C Program with escape sequence \" 

\":: Inserts double quote character.

#include <stdio.h>

int main() {

  printf("My name is \"Johnny\".");

  return 0;

}


OUTPUT of the above Program:

My name is "Johnny".

No comments:

Post a Comment