what is the use of double quotes in c programming ?
Answers
Answered by
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