InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is not a valid variable name declaration?(a) float PI = 3.14;(b) double PI = 3.14;(c) int PI = 3.14;(d) #define PI 3.14The question was asked in an online interview.Asked question is from Variable Names in section Data Types, Operators and Expressions in C of C |
|
Answer» Correct answer is (d) #DEFINE PI 3.14 |
|