pointers

D

darklight

Which is the correct way, to initialise a pointer to an element of
an array. I am sorry if my terminology is not correct

/* declare pointer */
int *ptr;
/* define and initialise array */
int array[10] = {,0,1,2,3,4,5,6,7,8,9};
/* assign value to pointer */
ptr = &array[9]; or ptr = (array + 9);

I have found both work but to avoid future problems is one
better than the other. And if so why
 
R

Richard Heathfield

darklight said:
Which is the correct way, to initialise a pointer to an element of
an array. I am sorry if my terminology is not correct

/* declare pointer */
int *ptr;
/* define and initialise array */
int array[10] = {,0,1,2,3,4,5,6,7,8,9};
/* assign value to pointer */
ptr = &array[9]; or ptr = (array + 9);

I have found both work but to avoid future problems is one
better than the other. And if so why

The two expressions are equivalent. Each points ptr to the last element of
the array.

In a value context, the following pairs of expressions are equivalent:

(arrayname) == (&arrayname[0])
(arrayname + n) == (&arrayname[n])
(*(arrayname + n)) == (arrayname[n])

Which you choose is entirely a matter of taste.

I should perhaps add that the external parentheses are there purely as an
attempted defence against nitpicking! :)
 
A

Al Bowers

darklight said:
Which is the correct way, to initialise a pointer to an element of
an array. I am sorry if my terminology is not correct

/* declare pointer */
int *ptr;
/* define and initialise array */
int array[10] = {,0,1,2,3,4,5,6,7,8,9};
/* assign value to pointer */
ptr = &array[9]; or ptr = (array + 9);

I have found both work but to avoid future problems is one
better than the other. And if so why

Either way will be valid. Generally you will find the [] operator
the most accepted method. To me, it it easier to understand the
operations.

By the way the () operator is not required in the above assignment,
but you may add them if it gives you more clarity. It could be,
ptr = array + 9;

However, in dereferencing, you will need the () operator to yield
the value of the last element of the array named array.
int i = *(array + 9;) will assign to i the value 9.
int i = *array + 9; will assign to i the value 18.
 
D

Derk Gwen

# Which is the correct way, to initialise a pointer to an element of
# an array. I am sorry if my terminology is not correct
#
# /* declare pointer */
# int *ptr;
# /* define and initialise array */
# int array[10] = {,0,1,2,3,4,5,6,7,8,9};
# /* assign value to pointer */
# ptr = &array[9]; or ptr = (array + 9);
#
# I have found both work but to avoid future problems is one
# better than the other. And if so why

&(array[9]) = &(*(array+9)) = (array+9)

The notations are equivalent, and you can expect a compiler to generate
the exact same code for both. Which is better is style question for you.

Which do you think looks better?
Which do you more easily understand?

That is the correct one.
 
E

Eric

darklight said:
Which is the correct way, to initialise a pointer to an element of
an array. I am sorry if my terminology is not correct

/* declare pointer */
int *ptr;
/* define and initialise array */
int array[10] = {,0,1,2,3,4,5,6,7,8,9};
/* assign value to pointer */
ptr = &array[9]; or ptr = (array + 9);

I have found both work but to avoid future problems is one
better than the other. And if so why

Either one works equally well and the decision on which to use is
generally based on personal preference and the context.
 
A

Anand

Hi

ptr=&array[9] 0r (array+9) both refer same operation. The basic difference
is that by accessing with pointers the operation will be quite faster while
comparing array[9]. Hence good C programmers will prefer pointers. Hope this
information will be useful to u. If u find anymore idea like this please let me
know.

Regards,
Anand.
 
P

pete

Anand said:
Hi

ptr=&array[9] 0r (array+9) both refer same operation.
The basic difference is that by accessing with pointers
the operation will be quite faster while comparing array[9].

Unless it isn't faster.

The compiler has enough information to know that
(&array[9]) and (array+9) are the same.

I'm unfamiliar with the address operator as being translated
into a time consuming machine operation.
 
H

Horst Kraemer

Hi

ptr=&array[9] 0r (array+9) both refer same operation. The basic difference
is that by accessing with pointers the operation will be quite faster while
comparing array[9]. Hence good C programmers will prefer pointers. Hope this
information will be useful to u. If u find anymore idea like this please let me
know.

My compilers generate the same code for

p = &array[9]

and

p = array+9

What about your compilers?

Regards
Horst
 
R

Richard Heathfield

Anand said:
Hi

ptr=&array[9] 0r (array+9) both refer same operation. The basic
difference
is that by accessing with pointers the operation will be quite faster
while comparing array[9].

Get A Better Compiler. Yours Is Broken.

Hence good C programmers will prefer pointers.

Better C programmers know that the compiler knows perfectly well that the
two expressions are equivalent.
Hope this information will be useful to u.

Let us hope that u, whoever he is, never reads it, since it's fundamentally
flawed.
 
C

Christopher Benson-Manica

Eric said:
/* declare pointer */
int *ptr;
/* define and initialise array */
int array[10] = {0,1,2,3,4,5,6,7,8,9}; ^ extra comma removed
/* assign value to pointer */
ptr = &array[9]; or ptr = (array + 9);
Either one works equally well and the decision on which to use is
generally based on personal preference and the context.

But the equivalence breaks down for

ptr=array+10; /* Legal */
ptr=&array[10]; /* Illegal (?), since array[10] is a dereference */

, right?
 
J

Jeremy Yallop

Christopher said:
Eric said:
/* declare pointer */
int *ptr;
/* define and initialise array */
int array[10] = {0,1,2,3,4,5,6,7,8,9}; ^ extra comma removed
/* assign value to pointer */
ptr = &array[9]; or ptr = (array + 9);
Either one works equally well and the decision on which to use is
generally based on personal preference and the context.

But the equivalence breaks down for

ptr=array+10; /* Legal */
ptr=&array[10]; /* Illegal (?), since array[10] is a dereference */

, right?

Wrong, at least in C99.

[6.5.3.2]
3 The unary & operator returns the address of its operand. [...]
Similarly, if the operand is the result of a [] operator, neither
the & operator nor the unary * that is implied by the [] is
evaluated and the result is as if the & operator were removed and
the [] operator were changed to a + operator.

Jeremy.
 
C

Christopher Benson-Manica

Jeremy Yallop said:
3 The unary & operator returns the address of its operand. [...]
Similarly, if the operand is the result of a [] operator, neither
the & operator nor the unary * that is implied by the [] is
evaluated and the result is as if the & operator were removed and
the [] operator were changed to a + operator.

Thank you, I am yet again abashed yet wiser :)
 
C

Clark Cox

Hi

ptr=&array[9] 0r (array+9) both refer same operation.

You should have just stopped there.
The basic difference
is that by accessing with pointers the operation will be quite faster while
comparing array[9].

Says who? I have *never* seen a compiler that generates more efficent
code for (&array[9]) than it does for *(array+9).
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
474,135
Messages
2,570,783
Members
47,341
Latest member
hanifree

Latest Threads

Top