- Aint ;a5;
- Bint _a4;
- Cint #a6;
- Dint @a2;
auto
extern
register
main
Variable name can start with only two special characters, which are _(underscore) and $(doller).
Variable name cannot start with a digit.
In case of ordinary int variables leftmost bit is reserved for sign.
int is valid keyword in C.
new delhi is not a valid name for a C variable, because of space.
auto
extern
register
main
main
Answer: a) int
Explanation: The keyword "int" is used to declare a variable in C language for integer data types. For example, "int x;" declares a variable named x of integer type.
Answer: d) There is no limit
Explanation: There is no specific limit on the length of a variable name in C language. However, it is recommended to keep the variable names short and meaningful.
Answer: d) =
Explanation: The symbol "=" is used for the assignment of a value to a variable in C language. For example, "x = 10;" assigns the value 10 to the variable x.