InterviewSolution
Saved Bookmarks
| 1. |
What notation should we use for denoting the breadth of an array?(a) sizeof(a[0])(b) sizeof(a)(c) sizeof(a[])(d) sizeof(a.0)The question was posed to me in an online interview.My doubt stems from The sizeof() Function in chapter Arduino Programming of Arduino |
|
Answer» Correct choice is (a) SIZEOF(a[0]) |
|