InterviewSolution
Saved Bookmarks
| 1. |
What is the difference between ‘g’ and “g” in C? |
|
Answer» In C double-quotes variables are identified as a STRING WHEREAS single-quoted variables are identified as the CHARACTER. Another MAJOR difference being the string (double-quoted) variables end with a null terminator that makes it a 2 character array. |
|