Computer Science, asked by PragyaTbia, 1 year ago

What is the purpose ot initializing an array?

Answers

Answered by aasthatatode
0
When a function parameter is declared as an array, the compiler treats the declaration as a pointer to the first element of the array. For example, if x is a parameter and is intended to represent an array of integers, it can be declared as any one of the following declarations: int x[]; int *x;int x[10];
Similar questions