Escape Sequence \" for double quote - C Language Basics

C examples for Language Basics:printf

Introduction

To insert a quote into your outputted text, use the escape sequence \".

Demo Code

#include <stdio.h>

int main()//from   ww  w  .  ja va 2 s .co m
{
    printf("\"This is quoted text\""); 

    return 0;
}

Result


Related Tutorials