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.
Bissoy MCQ

Related Questions

Given two processes (conversion of postfix equation to infix notation and conversion of prefix notation to infix notation), which of the following is easier to implement?
Determine Output:
#define int charvoid main(){ int i = 65; printf("sizeof(i)=%d", sizeof(i));}