Consider the below program.
int arr_size = sizeof (arr)/ sizeof (arr[0]); |
for (i = 0; i < arr_size; i++) |
int arr[4] = {0, 0 ,0, 0}; |
for (i = 0; i < sizeof (arr)/ sizeof (arr[0]); i++) |
Output: 0 0 0 0 on a IA-32 machine.
The function fun() receives an array parameter arr[] and tries to find out number of elements in arr[] using sizeof operator.
In C, array parameters are treated as pointers (See http://geeksforgeeks.org/?p=4088 for details). So the expression sizeof(arr)/sizeof(arr[0]) becomes sizeof(int *)/sizeof(int) which results in 1 for IA 32 bit machine (size of int and int * is 4) and the for loop inside fun() is executed only once irrespective of the size of the array.
Therefore, sizeof should not be used to get number of elements in such cases. A separate parameter for array size (or length) should be passed to fun(). So the corrected program is:
void fun( int arr[], size_t arr_size) |
for (i = 0; i < arr_size; i++) |
int arr[4] = {0, 0 ,0, 0}; |
for (i = 0; i < sizeof (arr)/ sizeof (arr[0]); i++) |
댓글 없음:
댓글 쓰기