Computer Science, asked by faiez4083, 9 months ago

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

Answers

Answered by Anonymous
0

Readable Syntax:

int a[ ] , b ; int [ ] c, d;

Answer:

The data type of the variable b and d is Integer and not array, because they are separated by comma.

Similar questions