- 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.
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.
new delhi is not a valid name for a C variable, because of space.
auto
extern
register
main
main
'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.