Home » Display Text Within Double Quotes in C

Display Text Within Double Quotes in C

Learn about Display Text Within Double Quotes in C in the below code example. Also refer the comments in the code snippet to get a detailed view about what’s actually happening.

Contents

Display Text Within Double Quotes in C

Program:

#include<stdio.h>
int main()
{
   printf("Hello \"Similar Geeks\" ");
   return 0;
}

Output:

Hello “Similar Geeks”

Hope above code works for you and Refer the below Related Codes to gain more insights. Happy coding and come back again.

Similar Codes :
C program to find the maximum and minimum of two numbers without using any loop or condition
C program to check whether the number is EVEN or ODD, without using any arithmetic or relational operators