Report Bug
Qus : How to find the length of an array in C?
QusHow to find the length of an array in C?

A. sizeof(a)
B. sizeof(a[0])
C. sizeof(a) / sizeof(a[0])
D. sizeof(a) * sizeof(a[0])


Solution
C. sizeof(a) / sizeof(a[0])






Report Bug