Also explain its difference if we write int n = sizeof(arr) / sizeof(arr[0])
What does int n = sizeof(arr) / sizeof(int)?
int n = sizeof(arr) / sizeof(int) this provides the size of array (named arr) given its of int type i.e each element occupies 4 bytes, but int n = sizeof(arr) / sizeof(arr[0]) but this makes no such assumption and would provide the correct size regardless of type of array.
I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.
On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.