vote up 1 vote down star
1

in C is: *(array) equivalent to array[0]?

Therefore is *(array+2) equivalent to array[2]?

flag

78% accept rate
6  
You have asked 4 questions and accepted none, you may want to check some correct answers on those. – James Black Oct 28 at 0:11
"accept rate" stinks! – jldupont Oct 28 at 0:11
sorry, I never got round to it... I'll do it now... + – oxinabox.ucc.asn.au Oct 28 at 1:07
See also the "Arrays and Pointers" section of the C FAQ list: c-faq.com/aryptr/index.html – Sinan Ünür Oct 28 at 1:37

4 Answers

vote up 8 vote down check

Yes, for instance:

given:

int a[10];

Then

*(a + 2)

is equivalent to

a[2]

and just for good measure.

a[2]

is equivalent to

2[a]
link|flag
OK, you lost me. How can 2[a] = a[2]? – James Black Oct 28 at 1:10
Yup storage address 2 plus addres of "a" is the same as address of "a" plus 2! – James Anderson Oct 28 at 1:16
1  
Addition is commutative. – drhirsch Oct 28 at 1:35
1  
Nice point on 2[a]. +1 – Tim Oct 28 at 1:42
1  
I had a boss that called that "arraying through and index"... :) – dicroce Oct 28 at 1:55
show 1 more comment
vote up 0 vote down

The simple answer is: Yes.

link|flag
vote up 0 vote down

Yes and yes. (Padding to required 15 character length.)

link|flag
vote up 1 vote down

You may want to look at this, for more help: http://www.ibiblio.org/pub/languages/fortran/append-c.html

4) Taking a subscript with value i is equivalent to the operation: "pointer-add i and then type-dereference the sum", i.e.

      xxx[i] = *(xxx # i)

As others mentioned, the answer is yes, but you may want to get a better understanding.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.