questions on pointers

J

JOhn

can someone please post some complicated question on pointers??

moreover while reading pointers I found out that there is a lot of
difference between an arracy of intergers and an array of
characters(string) ............. relating to
pointers ................am i correct................the way pointers
behave when they have a char array as an address and the way they
behave when they have an integer array as an address ????

please help as pointers is haunting me a lot ??? despite of being
quite old to 'C'

please help
 
L

Lew Pitcher

can someone please post some complicated question on pointers??

Not really. Depending on your POV, pointers are either trivially simple (and
thus there are /no/ complicated questions) or impossibly hard (and
thus /every/ question is a complicated question). For the trivially easy
POV, I have no questions, and for the impossibly hard POV, any question you
ask will be a complicated question. Such is life :)
moreover while reading pointers I found out that there is a lot of
difference between an arracy of intergers and an array of
characters(string) ............. relating to
pointers ................am i correct................the way pointers
behave when they have a char array as an address and the way they
behave when they have an integer array as an address ????

No and yes. They behave exactly the same, conceptually.
Increment a pointer to an object and it will point at the next object
The /value/ of the pointer may differ with different objects, as different
objects have different sizes.

Thus, in both of the following code snippets
char a[3], *p;
p = &a[0] + 1;
and
int a[3], *p;
p = &a[0] + 1;
the pointer 'p' will point at a[1]

However, the /value/ of p (that is, the "address") may differ, as int values
are usually stored in bigger spaces than char values. Consequently
int a[3], *ip;
char *cp;
ip = &a[0] + 1;
cp = (char)&a[0] + 1;
will usually result in ip and cp having different values.
please help as pointers is haunting me a lot ??? despite of being
quite old to 'C'

please help

--
Lew Pitcher

Master Codewright & JOAT-in-training | Registered Linux User #112576
http://pitcher.digitalfreehold.ca/ | GPG public key available by request
---------- Slackware - Because I know what I'm doing. ------
 
K

Keith Thompson

JOhn said:
can someone please post some complicated question on pointers??

moreover while reading pointers I found out that there is a lot of
difference between an arracy of intergers and an array of
characters(string) ............. relating to
pointers ................am i correct................the way pointers
behave when they have a char array as an address and the way they
behave when they have an integer array as an address ????

please help as pointers is haunting me a lot ??? despite of being
quite old to 'C'

The comp.lang.c FAQ is at <http://www.c-faq.com/>. Sections 4, 5, and
6 cover pointers. Have you read them?

Arrays of char and arrays of int behave essentially the same way with
respect to pointers as any other array type. Pointer arithmetic
operates in units of the size of the element type, 1 byte for pointers
to char, sizeof(int) bytes for pointers to int. If you can tell us
just what difference you're seeing, we can probably help clarify it
for you.

(Incidentally, using all lower case and long strings of '.' and '?'
characters doesn't help the readability of your article.)
 
L

lee

can someone please post some complicated question on pointers??

moreover while reading pointers I found out that there is a lot of
difference between an arracy of intergers and an array of
characters(string) ............. relating to
pointers ................am i correct................the way pointers
behave when they have a char array as an address and the way they
behave when they have an integer array as an address ????

please help as pointers is haunting me a lot ??? despite of being
quite old to 'C'

please help

you can read a book named Puzzle c.
 

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

No members online now.

Forum statistics

Threads
474,430
Messages
2,571,676
Members
48,796
Latest member
Greg L.

Latest Threads

Top