C Language MCQ - English
Which is valid C expression?
int my_num = 100,000;
int my_num = 100000;
int my num = 1000;
int $my_num = 10000;
Answer : B
View More Related Question
1) Which of the following is not a valid C variable name?
2) Which of following is not a valid name for a C variable?
3) The declaration "unsigned u" indicates:
4) All keywords in C are in
5) A declaration "short int" is used for variable
Which have short duration in a program
Which have short names
Which may require less storage than normal integers
All of the above
View Answer