A subscript is used to refer to individual elements in an array, ranging from 0 to SIZE-1.
Example:
char country[] = "India";
int stud[] = {1, 2, 3, 4, 5};
Array Refrences:
| Element no. | Subscript | country Array | value | stud Array | value |
| 1 | 0 | country[0] | 'I' | stud[0] | 1 |
| 2 | 1 | country[1] | 'n' | stud[1] | 2 |
| 3 | 2 | country[2] | 'd' | stud[2] | 3 |
| 4 | 3 | country[3] | 'i' | stud[3] | 4 |
| 5 | 4 | country[4] | 'a' | stud[4] | 5 |
Subscripts provide a way to access and manipulate individual elements within an array.


