In C programming, how do you insert quote characters (' and ") into the output screen?
4 years ago
C Programming
This is a common problem for beginners because quotes are normally part of a printf statement. To insert the quote character as part of the output, use the format specifiers \' (for single quote), and \" (for double quote).
Sanisha Maharjan
Jan 20, 2022