473,386 Members | 1,733 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

pointers

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

Nov 14 '05 #1
12 6134
darklight wrote:
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! :-)

--
Richard Heathfield : bi****@eton.powernet.co.uk
"Usenet is a strange place." - Dennis M Ritchie, 29 July 1999.
C FAQ: http://www.eskimo.com/~scs/C-faq/top.html
K&R answers, C books, etc: http://users.powernet.co.uk/eton
Nov 14 '05 #2


darklight wrote:
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.

--
Al Bowers
Tampa, Fl USA
mailto: xa******@myrapidsys.com (remove the x to send email)
http://www.geocities.com/abowers822/

Nov 14 '05 #3
darklight <ng******@netscapel.net> wrote:
# 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.

--
Derk Gwen http://derkgwen.250free.com/html/index.html
Don't say anything. Especially you.
Nov 14 '05 #4
darklight <ng******@netscapel.net> wrote:
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.
--
== Eric Gorr ========= http://www.ericgorr.net ========= ICQ:9293199 ===
"Therefore the considerations of the intelligent always include both
benefit and harm." - Sun Tzu
== Insults, like violence, are the last refuge of the incompetent... ===
Nov 14 '05 #5
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.
Nov 14 '05 #6
Anand wrote:

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.

--
pete
Nov 14 '05 #7
On 12 Jan 2004 02:53:40 -0800, an********@yahoo.co.in (Anand) wrote:
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

Nov 14 '05 #8
Anand wrote:
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.

--
Richard Heathfield : bi****@eton.powernet.co.uk
"Usenet is a strange place." - Dennis M Ritchie, 29 July 1999.
C FAQ: http://www.eskimo.com/~scs/C-faq/top.html
K&R answers, C books, etc: http://users.powernet.co.uk/eton
Nov 14 '05 #9
Eric <eg*************@verizon.net> spoke thus:
darklight <ng******@netscapel.net> wrote:
/* 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?

--
Christopher Benson-Manica | I *should* know what I'm talking about - if I
ataru(at)cyberspace.org | don't, I need to know. Flames welcome.
Nov 14 '05 #10
Christopher Benson-Manica wrote:
Eric <eg*************@verizon.net> spoke thus:
darklight <ng******@netscapel.net> wrote:

/* 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.
Nov 14 '05 #11
Jeremy Yallop <je****@jdyallop.freeserve.co.uk> spoke thus:
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 :)

--
Christopher Benson-Manica | I *should* know what I'm talking about - if I
ataru(at)cyberspace.org | don't, I need to know. Flames welcome.
Nov 14 '05 #12
In article <cd************************@posting.google.com>,
an********@yahoo.co.in (Anand) wrote:
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).

Nov 14 '05 #13

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

27
by: Susan Baker | last post by:
Hi, I'm just reading about smart pointers.. I have some existing C code that I would like to provide wrapper classes for. Specifically, I would like to provide wrappers for two stucts defined...
3
by: ozbear | last post by:
This is probably an obvious question. I know that pointer comparisons are only defined if the two pointers point somewhere "into" the storage allocated to the same object, or if they are NULL,...
9
by: Mikhail Teterin | last post by:
Hello! I'd like to have a variable of a pointer-to-function type. The two possible values are of type (*)(FILE *) and (*)(void *). For example: getter = straight ? fgetc : gzgetc; nextchar...
12
by: Lance | last post by:
VB.NET (v2003) does not support pointers, right? Assuming that this is true, are there any plans to support pointers in the future? Forgive my ignorance, but if C# supports pointers and C# and...
14
by: Alf P. Steinbach | last post by:
Not yet perfect, but: http://home.no.net/dubjai/win32cpptut/special/pointers/ch_01.pdf http://home.no.net/dubjai/win32cpptut/special/pointers/ch_01_examples.zip To access the table of...
92
by: Jim Langston | last post by:
Someone made the statement in a newsgroup that most C++ programmers use smart pointers. His actual phrase was "most of us" but I really don't think that most C++ programmers use smart pointers,...
4
by: Josefo | last post by:
Hello, is someone so kind to tell me why I am getting the following errors ? vector_static_function.c:20: error: expected constructor, destructor, or type conversion before '.' token...
25
by: J Caesar | last post by:
In C you can compare two pointers, p<q, as long as they come from the same array or the same malloc()ated block. Otherwise you can't. What I'd like to do is write a function int comparable(void...
54
by: Boris | last post by:
I had a 3 hours meeting today with some fellow programmers that are partly not convinced about using smart pointers in C++. Their main concern is a possible performance impact. I've been explaining...
2
by: StevenChiasson | last post by:
For the record, not a student, just someone attempting to learn C++. Anyway, the problem I'm having right now is the member function detAddress, of object controller. This is more or less, your...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.