C Language MCQ - English
Which of the following is not a valid variable name declaration?
float PI = 3.14;
double PI = 3.14;
int PI = 3.14;
#define PI 3.14
Answer : D
Sponsored Ad
Feel free to find and hire your online essay writer to help you with papers. AdvancedWriters will not let you down.
View More Related Question
1) Which of the following is true for variable names in C?
They can contain alphanumeric characters as well as special characters
It is not an error to declare a variable to be one of the keywords(like goto, static)
Variable names cannot start with a digit
Variable can be of any length
View Answer
2) The declaration "unsigned u" indicates:
3) Which of the following is not a valid variable name declaration?
4) Which of the following cannot be a variable name in C?
5) Which of the following is not a valid variable name declaration?