- AUpperCase letters
- BLowerCase letters
- CCamelCase letters
- DNone
Time Taken:
Correct Answer:
Wrong Answer:
Percentage: %
In case of ordinary int variables leftmost bit is reserved for sign.
int is valid keyword in C.
real is not a variable type.
#define PI 3.14 is a macro preprocessor, it is a textual substitution.
'i'
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.