What notation should we use for denoting the breadth of an array? ) b) sizeof() d) sizeof(a.0)
What notation should we use for denoting the breadth of an array? ) b) sizeof() d) sizeof(a.0) Correct Answer sizeof(a) c) sizeof(a) d) sizeof(a.0) View Answer]
When the first element of an array is invoked in the sizeof() function, if the array is a 2D array then it will give the number of elements present in the breadth of the matrix.