7. Why can’t constant values be used to define an array’s initial size? There are times when constant values can be used and there are times when they can’t. A …
C ProgrammingInterview Questions and AnswersTechnical Interview Questions and Answers
7. Why can’t constant values be used to define an array’s initial size? There are times when constant values can be used and there are times when they can’t. A …
5. Can you assign a different address to an array tag? No, although in one common special case, it looks as if you can. An array tag is not something …
3. Can the sizeof operator be used to tell the size of an array passed to a function? No. There’s no way to tell, at runtime, how many elements are …
1. Do array subscripts always start with zero? Yes. If you have an array a[MAX] (in which MAX is some value known at compile time), the first element is a[0], …