Computer Science, asked by NaveenPancholi, 10 months ago

The C Square brackets [ ] are used in​

Answers

Answered by qwtiger
0

Answer:

The C Square brackets [ ] are used to initialize or to define an array of different data types.

Like we have initialized integer array with the below structure,

int a[10];

it means that in the memory we have assigned an integer array which can store upto 10 numbers means the size of the array is 10.

In the same way,

we can defined an character array like,

char a[100];

it means that in the memory we have assigned an character  array which can store upto 100 characters means the size of the array is 100.

Similar questions