A pointer to an array: int* p=arr; vs. int (*p2)[10] = &arr; ?I do not have a "proper" initialization. I only saw the syntax for p2 and I wanted to know what is i...
A pointer to an array: int* p=arr; vs. int (*p2)[10] = &arr; ?I do not have initialization, I saw the syntax for p2 and I wanted to know what is it for. Thx for...
A pointer to an array: int* p=arr; vs. int (*p2)[10] = &arr; ?Also, p2 is in fact a pointer to an array of an array of ints, so p2 is used to deal with 2D arrays...
A pointer to an array: int* p=arr; vs. int (*p2)[10] = &arr; ?Hello, [code] int arr[10]; int* p = arr; int (*p2)[10] = &arr; [/code] So, pointer p is a ...
Why address of an object is 6 bytes?Thank you for all responses, I am going to close this.