#include <stdio.h>
void func(int arg[5])
{
int other[5];
printf("sizeof(arg) = %zu\n", sizeof arg
); printf("sizeof(other) = %zu\n", sizeof other
); }
int main(void)
{
int arr[5] = { 0 };
func(arr);
return 0;
}
I2luY2x1ZGUgPHN0ZGlvLmg+CiAKdm9pZCBmdW5jKGludCBhcmdbNV0pCnsKICAgIGludCBvdGhlcls1XTsKICAgIHByaW50Zigic2l6ZW9mKGFyZykgPSAlenVcbiIsIHNpemVvZiBhcmcpOwogICAgcHJpbnRmKCJzaXplb2Yob3RoZXIpID0gJXp1XG4iLCBzaXplb2Ygb3RoZXIpOwp9CgppbnQgbWFpbih2b2lkKQp7CiAgICBpbnQgYXJyWzVdID0geyAwIH07CiAgICBmdW5jKGFycik7CiAgICByZXR1cm4gMDsKfQog