size of array of pointers
Asked Answered
I

6

3

i have a doubt regarding sizeof operator

Code 1:

int main()
{
    int p[10];
    printf("%d",sizeof(p));   //output -- 40
    return 0;
}

Code 2:

int main()
{
    int *p[10];
    printf("%d",sizeof(*p));   //output -- 4
    return 0;
}

in the first code p points to an array of ints. in the second code p points to an array of pointers. i am not able to understand why the first code o/p is 40 but 2nd code o/p is 4 thought both points to an array of the same size ?

Izaguirre answered 20/12, 2011 at 7:39 Comment(1)
In your 2nd example (and usually for arrays), *p is the same as p[0]. So sizeof(*p) is the same as sizeof(p[0]) is the size of a pointer.Namaqualand
L
9

The output of the following program will give you some hints and understanding about the size of a type and a pointer to a type.

#include <stdio.h>

int main(void)
{
    int p1[10];
    int *p2[10];
    int (*p3)[10];

    printf("sizeof(int)   = %d\n", (int)sizeof(int));
    printf("sizeof(int *) = %d\n", (int)sizeof(int *));
    printf("sizeof(p1)    = %d\n", (int)sizeof(p1));
    printf("sizeof(p2)    = %d\n", (int)sizeof(p2));
    printf("sizeof(p3)    = %d\n", (int)sizeof(p3));

    return 0;
}

int p[10];      => 10 consecutive memory blocks (each can store data of type int) are allocated and named as p

int *p[10];     => 10 consecutive memory blocks (each can store data of type int *) are allocated and named as p

int (*p)[10];   => p is a pointer to an array of 10 consecutive memory blocks (each can store data of type int) 

Now coming to your question:

>> in the first code p points to an array of ints.
>> in the second code p points to an array of pointers.

You are correct. In the code:2, to get the size of the array where p points to, you need to pass the base address

printf("%d", (int)sizeof(p));

and not the following

printf("%d", (int)sizeof(*p));   //output -- 4

The following are equivalent:

*p, *(p+0), *(0+p), p[0]

>> what's the difference between p[10] and 
>> (*p)[10]...they appear same to me...plz explain

The following is the answer to your other question:

int p[10];
 _________________________________________
|   0   |   1   |   2   |         |   9   |
| (int) | (int) | (int) |  ...    | (int) |
|_______|_______|_______|_________|_______|


int (*p)[10]
 _____________________
|                     |
| pointer to array of |
|     10 integers     |
|_____________________|
Lysol answered 20/12, 2011 at 8:44 Comment(4)
what's the difference between p[10] and (*p)[10]...they appear same to me...plz explainIzaguirre
I have updated my previous answer to contain your above-mentioned question. Hope this helps.Lysol
thanks....i got the difference....you cannot modify p (in case of p[10])but can modify(in case of (*p)[10])...eg.increment..Izaguirre
@AmolSharma I'm glad. OTOH, could you please mark the correct post as an answer to your question once after you're done with your exercise/learning?Lysol
E
5

Basically, you have an array of pointers. When you did *p, you dereferenced the pointer to the first element of the array. Therefore, the type would be int. sizeof(int*) just happens to be 4 on your machine.

Edit (clarification):

Code snippet 1, you're grabbing the size of the array.

Code snippet 2, you're grabbing the size of the type pointed to by the first element of the array of pointers.

Eme answered 20/12, 2011 at 7:43 Comment(11)
But sizeof doesn't dereference anything.Sanitize
The OP dereferenced the pointer. sizeof(*p) means the "size of what is pointed to by p"Eme
The thing is the sizeof operator is special and doesn't dereference its arguments :-)Sanitize
Wouldn't *p be the dereferenced object and sizeof taking the size of that? I don't think I've ever heard of sizeof not taking a dereferenced parameterEme
This is correct, on my machine (64-bits) ´sizeof(*p) == 4´ and ´sizeof(int) == 4´ but ´sizeof(int*) == 8´ so it yields sizeof int not int pointerKermit
@tangrs, I think what he/she is trying to say is that what's printed here (in "code 2") is sizeof(int*), not sizeof(int).Brucebrucellosis
@Eme I don't know what Firoze means. I stand by my opinion that sizeof(*p) is perfectly defined behavior.Sanitize
Wait, hang on. p will decay into "a pointer to pointer to int". Dereferencing that will get "a pointer to int". So, how did r_ahlskog get his results on his machine? I'm actually confused now o_OEme
Oh that was one sneaky * well when in doubt write a testcase, i Iid not spot that p was declared differently, see ideone.com/34hH3 for reference code, however that machine appears to be 32bitKermit
@Sanitize Yes, of course sizeof(*p) is defined. It is, in this case, sizeof(int*)Brucebrucellosis
Oh never mind... @Firoze Lafeer, cnicutar was referring to my earlier mistake.Eme
K
4

In the first code:

int p[10];

p doesn't point to an array of ints; p is an array of ints. In the statement

printf("%d",sizeof(p));

which should be

printf("%d", (int)sizeof(p));

the expression p still refers to the array object, so sizeof(p) yields the size of the array object, which happens to be 40 bytes on your system (10 * sizeof (int)).

In the second:

int *p[10];

again, p is an array of pointers. But in the following statement:

printf("%d", (int)sizeof(*p));

the expression p is converted to a pointer to the first element of the array (not to the entire array). Dereferencing that pointer (with the unary * operator) gives you an int* object, namely the first element of the array. The size of an int* pointer on your system happens to be 4. (sizeof (int) and sizeof (int*) are not necessarily the same; it happens that they are on your system.)

In C, the rule is that any expression of array type (such as the name of an array variable) is automatically converted to a pointer to the array's first element -- most of the time. There are three exceptions:

  • When it's the operand of sizeof (sizeof arr yields the size of the array object, not the size of a pointer)
  • When it's the operand of unary & (&arr yields the address of the whole array object, not the address of its first element; same memory location, different types)
  • When it's a string literal in an initializer used to initialize an array object (int arr[6] = "hello"; doesn't convert "hello" to a pointer, it copies the array).

Strongly recommended reading: section 6 of the comp.lang.c FAQ.

Kiely answered 20/12, 2011 at 21:32 Comment(0)
P
2

check this code:

in this code p points to an array of pointers hence the o/p is 40

In your case it is an array of pointers so the o/p is 4

#include<stdio.h>
int main()
{
       int (*p)[10];
       printf("%d",sizeof(*p));   //output -- 40
       return 0;
}
Practically answered 20/12, 2011 at 8:3 Comment(0)
F
2

In the first code sizeof(Array) will return you the total number of bytes allocated for that array. You can get the correct size of the array by

int size= sizeof(Array)/sizeof(Array[0]);

where as in the second code it returns the size of pointer.

Foolish answered 3/12, 2020 at 18:40 Comment(0)
M
0

Look in your first code snippet p is array whose size is 40 bytes.Now how it comes out to be 40 byte is simple, Array p does contain 10 members and each member having size 4 bytes

   10*4=40

In second code snippet p is nothing but its array of pointer means each member of this array is a pointer to an int value.Now *p denotes value at first subscript of array and this value is nothing but an address which is of 4 bytes.

Hopes things will be clear for you now.

Masker answered 20/12, 2011 at 9:50 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.