InterviewSolution
Saved Bookmarks
| 1. |
In C Programming, How Do You Insert Quote Characters (‘ And “) Into The Output Screen? |
|
Answer» 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). 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). |
|