Print string with double quotes in C
printf() - Question 4
In this question, we will see how to print a string with double quotes in C programming using the printf() function. To know more about printf() function click on the printf() function lesson.
Q4) Write a program in C to print the name Dremendo with double quotes on the screen.
Example : "Dremendo"
Program
#include <stdio.h>
#include <conio.h>
int main()
{
printf("\"Dremendo\"");
return 0;
}
Output
"Dremendo"