How to Print Double Quotes in C
Here you will know that how to print double quotes in C programming. This is an easy trick to print the message or string in double quotes.
Program Code: How to Print Double Quotes in C
1 2 3 4 5 6 7 8 | //Print Double Quotes in C #include<stdio.h> int main() { printf("\nWelcome to \"CodeRevise.com\" "); printf("\n\"Learn Coding for free\" "); } |
Output
Welcome to “CodeRevise.com”
“Learn Coding for free”
Check out our other C programming Examples