Which of the declaration is corect?
A
int length;
B
char int;
C
int long;
D
float double;
Correct Answer: int length;
int length; denotes that variable length isint(integer) data type. char int; here int is a keyword cannot be used a variable name. int long; here long is a keyword cannot be used a variable name