- Aint ;a5;
- Bint _a4;
- Cint #a6;
- Dint @a2;
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.
C programs are converted from high level to machine level language with the help of Compiler.
Compiler: A compiler is a software program that transforms high-level source code that is written by a developer in a high-level programming language into a low-level object code (binary code) in machine language, which can be understood by the processor. The process of converting high-level programming into machine language is known as compilation.
real is not a variable type.
Variable names cannot start with a digit.
'i'
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.