InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is not a valid variable name declaration?(a) int __a3;(b) int __3a;(c) int __A3;(d) None of the mentionedI got this question during an online interview.My doubt is from Variable Names in chapter Data Types, Operators and Expressions in C of C |
|
Answer» CORRECT CHOICE is (d) NONE of the mentioned The BEST EXPLANATION: None. |
|