简体   繁体   中英

Behaviour of Sizeof in C

I have learnt that when we pass the array name to sizeof, the name of the array does not decay to the pointer to base address. The code below verifies this fact by giving answer 10.

#include <stdio.h> 

int main(){  
    int arr[10];  
    printf("Size of array is %d" , sizeof(arr)/sizeof(int));  
    return 0;  
}

However when I run the code below, the answer comes 1. Irrespective of whether a dimension is written in prototype or not , the answer is 1. Why is it so ?

#include <stdio.h>

void dimension(int arr[]){  
    printf("Sizof array is %d" , sizeof(arr)/sizeof(int));  
}


int main(){  
    int arr[10];  
    dimension(arr);  
    return 0;  
}  

This signature

void dimension(int arr[])

is absolutely equivalent to

void dimension(int *arr)

See also Question 6.4

Because you pass an array of unknown size which is equivalent to a pointer in this context. sizeof is calculated at compile time, not runtime.

当数组传递给函数时,它作为指针而不是数组传递,因此sizeof(arr)将返回sizeof(int *)

In

void dimension(int arr[]){  
    printf("Sizof array is %d" , sizeof(arr)/sizeof(int));  
}

arr[] decays to a pointer, therefore you have the equivalent of

printf("Sizof array is %d" , sizeof(int*)/sizeof(int));

and because on your platform, sizeof(int*) == sizeof(int) , you receive 1 as the result.

Note however, that for variable length arrays, sizeof becomes a runtime operation:

int main () {
    int i = ...;
    int x[i];
    printf("number of elements: %d", sizeof (x) / size(*x));
}

Arrays as function arguments do decay to pointer, though. Since this happens before sizeof() is called, you can't prevent it.

Just think about it: how can sizeof() know the size of an array if any size array can be passed and no extra info is available? You get sizeof(pointer), and that seems to be the same size as an int, in your setup.

因为arr是一个指针,它是一个整数。

它返回指针的大小,即整数。

因为您传递的是未知大小的数组。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM