1.

What is the type of variable ‘b’ and ‘d’ in the below snippet? int a[], b; int []c, d;

A. ‘b’ and ‘d’ are int
B. ‘b’ and ‘d’ are arrays of type int
C. ‘b’ is int variable; ‘d’ is int array
D. ‘d’ is int variable; ‘b’ is int array
Answer» D. ‘d’ is int variable; ‘b’ is int array


Discussion

No Comment Found