C Programming - Declarations and Initializations - Discussion

Discussion Forum : Declarations and Initializations - Point Out Correct Statements (Q.No. 1)
1.
Which of the declaration is correct?
int length;
char int;
int long;
float double;
Answer: Option
Explanation:

int length; denotes that variable length is int(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.

float double; here double is a keyword cannot be used a variable name.

So, the answer is int length;(Option A).

Discussion:
1 comments Page 1 of 1.

Tejashri said:   7 years ago
It's really good for practice without any basic knowledge. Thanks.

Post your comments here:

Your comments will be displayed after verification.