Computer Science, asked by prince6816, 1 year ago

what is the use of double quotes in c programming ?​

Answers

Answered by abhi200144
0

Answer:

Double quotes are for a string (array of characters). You can use single quotes to build up a string one character at a time, if you

for example:

There is a escape sequence character \" (slash double quote), which is used to print " (double quote). In \" - \ tells to the compiler that " (double quote) is not for syntax to start or close the printf statement, this double quote is to print on the output device.

Similar questions