Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
| From | Keith Thompson <kst-u@mib.org> |
|---|---|
| Newsgroups | comp.lang.c |
| Subject | Re: Sizes of pointers |
| Date | 2013-08-10 20:29 -0700 |
| Organization | None to speak of |
| Message-ID | <ln7gfsoqfq.fsf@nuthaus.mib.org> (permalink) |
| References | (8 earlier) <slrn3vfsl0bl9n.a0o.ike@iceland.freeshell.org> <ku596h$96k$1@dont-email.me> <3b291c09-cc71-4b28-a02b-d45e56d2b4cd@googlegroups.com> <lnfvuho1o7.fsf@nuthaus.mib.org> <ku63f0$mqi$1@speranza.aioe.org> |
glen herrmannsfeldt <gah@ugcs.caltech.edu> writes:
> Keith Thompson <kst-u@mib.org> wrote:
>> Malcolm McLean <malcolm.mclean5@btinternet.com> writes:
> (snip)
>>> A pointer is a specific C variable which can be dereferenced, and on
>>> any sane C implementation holds a memory address. An address is any
>>> representation which can be converted ultimately to impulses along the
>>> bus to read the memory. So it's meaningful to take modulus or do other
>>> operations on a address which are forbidden in pointers. It's also
>>> meaningful to talk about a "negative" address, though ultimately, like
>>> all computer values, it's just set bits and unset bits and any
>>> construction we put upon them is human.
>
>> If you're going to make this kind of distinction (which is a
>> perfectly valid one), I suggest not using terms that are synonyms
>> in the C standard. For example, the unary "&" operator yields
>> the *address* of its operand, which is a *pointer* value. Perhaps
>> "machine address" would be a better term for what you're calling
>> a memory address.
>
> I suppose, but maybe the standard shouldn't use some terms which
> might not be right. Since a "pointer" might not be just an
> "address", maybe there should be different wording for &.
How can a "pointer" be anything other than an "address" (with
both terms used the way the C standard uses them)? I suppose you
could say that a null pointer isn't an address; is that what you're
referring to?
A C pointer / address might be something other than a machine-level
address, but there are plenty of cases where the standard uses terms
in more specific ways than they might be used in other contexts
("string", "byte", "object", etc.).
--
Keith Thompson (The_Other_Keith) kst-u@mib.org <http://www.ghoti.net/~kst>
Working, but not speaking, for JetHead Development, Inc.
"We must do something. This is something. Therefore, we must do this."
-- Antony Jay and Jonathan Lynn, "Yes Minister"
Back to comp.lang.c | Previous | Next — Previous in thread | Next in thread | Find similar
Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-01 17:43 -0500
Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-01 19:10 -0400
Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-01 22:32 -0500
Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-03 11:50 -0700
Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-03 14:48 -0500
Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-03 16:53 -0400
Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-03 23:31 -0500
Re: Sizes of pointers Philip Lantz <prl@canterey.us> - 2013-08-03 23:56 -0700
Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-09 20:53 +0200
Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-09 21:18 +0200
Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-08 10:39 -0700
Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-08 11:29 -0700
Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-08 17:09 -0700
Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-09 00:33 +0000
Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-19 01:08 -0700
Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-13 11:58 -0500
Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-20 17:16 -0700
Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-09 19:50 +0000
[OT] Re: Sizes of pointers Eric Sosman <esosman@comcast-dot-net.invalid> - 2013-08-09 16:28 -0400
Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-10 09:51 +0200
Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-10 10:46 +0200
Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-02 09:24 +0200
Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-02 16:35 +0000
Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-02 17:47 -0500
Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-04 03:58 -0700
Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-04 09:17 -0500
Re: Sizes of pointers Malcolm McLean <malcolm.mclean5@btinternet.com> - 2013-08-04 07:43 -0700
Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-05 04:47 +0000
[OT] gravity James Kuyper <jameskuyper@verizon.net> - 2013-08-05 06:52 -0400
Re: [OT] gravity Malcolm McLean <malcolm.mclean5@btinternet.com> - 2013-08-05 11:29 -0700
Re: [OT] gravity James Kuyper <jameskuyper@verizon.net> - 2013-08-05 15:02 -0400
Re: [OT] gravity glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-05 18:42 +0000
Re: [OT] gravity Robert Wessel <robertwessel2@yahoo.com> - 2013-08-05 20:01 -0500
Re: [OT] gravity James Kuyper <jameskuyper@verizon.net> - 2013-08-05 23:34 -0400
Hidden Assumptions Re: [OT] gravity Siri Cruise <chine.bleu@yahoo.com> - 2013-08-05 22:12 -0700
Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-04 19:40 +0200
Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-04 15:18 -0500
Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-04 15:02 -0700
Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-04 18:47 -0500
Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-04 19:40 -0700
Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-05 04:53 +0000
Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-04 22:44 -0700
Re: Sizes of pointers Malcolm McLean <malcolm.mclean5@btinternet.com> - 2013-08-05 02:00 -0700
Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-05 07:48 -0700
Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-08 04:13 -0700
Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-08 13:57 +0000
Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-08 16:30 -0700
Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-08 10:34 -0500
Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-08 16:55 -0700
Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-09 00:53 +0000
Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-18 20:11 -0700
Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-17 20:24 -0500
Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-22 12:28 -0700
Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-05 04:31 +0000
Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-08 04:48 -0700
Re: Sizes of pointers Philip Lantz <prl@canterey.us> - 2013-08-17 14:41 -0700
Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-21 13:04 -0700
Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-05 23:16 -0500
Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-06 01:01 -0500
Re: Sizes of pointers "James Harris" <james.harris.1@gmail.com> - 2013-08-06 10:11 +0100
Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-06 07:20 -0500
Re: Sizes of pointers "James Harris" <james.harris.1@gmail.com> - 2013-08-06 15:33 +0100
Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-06 14:23 -0500
Re: Sizes of pointers "James Harris" <james.harris.1@gmail.com> - 2013-08-06 23:18 +0100
Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-06 23:45 +0000
Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-07 05:59 -0500
Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-07 16:44 +0000
Re: Sizes of pointers "James Harris \(es\)" <james.harris.1@gmail.com> - 2013-08-07 18:40 +0100
Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-08 01:01 -0500
Re: Sizes of pointers "James Harris" <james.harris.1@gmail.com> - 2013-08-08 07:40 +0100
Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-08 03:13 -0500
Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-08 14:10 +0000
Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-08 11:15 -0500
Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-08 11:44 -0500
Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-08 17:34 +0000
Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-08 17:16 +0000
Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-09 01:01 -0500
Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-09 11:03 +0000
Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-08 10:15 -0500
Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-06 20:47 +0000
Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-06 16:28 -0500
Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-06 13:18 -0500
Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-06 13:21 -0500
Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-06 14:10 -0500
Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-06 14:42 -0500
Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-06 20:52 +0000
Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-06 16:39 -0500
Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-06 23:50 +0000
Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-08 16:12 -0700
Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-08 19:18 +0200
Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-08 11:27 -0700
Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-08 21:58 +0200
Re: Sizes of pointers Lew Pitcher <lew.pitcher@digitalfreehold.ca> - 2013-08-08 16:25 -0400
Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-09 08:50 +0200
Re: Sizes of pointers Lew Pitcher <lew.pitcher@digitalfreehold.ca> - 2013-08-09 11:35 -0400
Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-09 11:49 -0400
Re: Sizes of pointers Lew Pitcher <lew.pitcher@digitalfreehold.ca> - 2013-08-09 12:01 -0400
Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-09 10:55 -0700
Re: Sizes of pointers Malcolm McLean <malcolm.mclean5@btinternet.com> - 2013-08-09 09:04 -0700
Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-09 19:23 +0200
Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-09 18:42 +0000
Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-09 15:12 -0400
Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-09 19:56 +0000
Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-09 16:28 -0400
Re: Sizes of pointers christian.bau@cbau.wanadoo.co.uk - 2013-08-10 18:26 -0700
Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-08 13:40 -0700
Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-08 21:30 -0400
Re: Sizes of pointers Ike Naar <ike@iceland.freeshell.org> - 2013-08-10 05:52 +0000
Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-10 09:54 +0200
Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-10 07:46 -0400
Re: Sizes of pointers Malcolm McLean <malcolm.mclean5@btinternet.com> - 2013-08-10 04:54 -0700
Re: Sizes of pointers David Brown <david.brown@removethis.hesbynett.no> - 2013-08-10 14:51 +0200
Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-10 11:12 -0700
Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-10 19:14 +0000
Re: Sizes of pointers Richard Damon <Richard@Damon-Family.org> - 2013-08-10 20:39 -0400
Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-10 20:29 -0700
Re: Sizes of pointers Malcolm McLean <malcolm.mclean5@btinternet.com> - 2013-08-10 21:51 -0700
Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-11 05:47 +0000
Re: Sizes of pointers Malcolm McLean <malcolm.mclean5@btinternet.com> - 2013-08-10 23:15 -0700
Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-11 02:20 -0700
Re: Sizes of pointers Joe Pfeiffer <pfeiffer@cs.nmsu.edu> - 2013-08-11 18:53 -0600
Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-09 16:46 +0200
Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-09 08:12 +0200
Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-09 14:04 -0700
Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-10 10:45 +0200
Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-10 11:14 -0700
Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-02 10:34 +0200
Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-02 18:12 -0500
Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-03 07:04 +0200
Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-03 07:07 +0200
Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-03 09:46 +0200
Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-03 11:25 -0700
Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-03 00:50 -0500
Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-03 09:57 +0200
Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-04 01:38 -0500
Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-03 13:12 -0500
Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-04 19:40 +0200
Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-04 14:40 -0500
Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-04 14:24 -0700
Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-05 19:31 +0200
Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-05 19:51 +0200
Re: Sizes of pointers Eric Sosman <esosman@comcast-dot-net.invalid> - 2013-08-05 14:20 -0400
Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-05 21:57 +0200
Re: Sizes of pointers Eric Sosman <esosman@comcast-dot-net.invalid> - 2013-08-05 16:21 -0400
Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-05 16:39 -0500
Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-06 07:00 +0200
Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-06 01:18 -0500
Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-06 09:23 +0200
Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-06 09:54 +0200
Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-06 12:40 -0500
Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-06 06:44 -0500
Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-06 08:06 -0700
Re: Sizes of pointers gazelle@shell.xmission.com (Kenny McCormack) - 2013-08-06 15:48 +0000
Re: Sizes of pointers "James Harris" <james.harris.1@gmail.com> - 2013-08-06 10:17 +0100
Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-06 06:58 -0500
Re: Sizes of pointers "James Harris" <james.harris.1@gmail.com> - 2013-08-06 15:44 +0100
Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-06 14:29 -0500
Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-06 21:08 +0000
Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-06 16:52 -0500
Re: Sizes of pointers "James Harris" <james.harris.1@gmail.com> - 2013-08-06 23:29 +0100
Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-06 21:06 +0000
Re: Sizes of pointers Eric Sosman <esosman@comcast-dot-net.invalid> - 2013-08-06 08:16 -0400
Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-06 09:19 +0200
Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-06 06:53 -0500
Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-06 18:34 +0200
Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-08 01:17 -0500
Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-05 22:00 +0000
Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-05 22:15 -0500
Re: Sizes of pointers Eric Sosman <esosman@comcast-dot-net.invalid> - 2013-08-06 08:37 -0400
Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-06 21:18 +0000
Re: Sizes of pointers Eric Sosman <esosman@comcast-dot-net.invalid> - 2013-08-06 18:08 -0400
Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-07 00:09 +0000
Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-06 09:20 +0200
Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-06 06:54 -0500
Re: Sizes of pointers "James Harris" <james.harris.1@gmail.com> - 2013-08-06 10:41 +0100
Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-06 08:37 -0400
Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-06 08:06 -0500
Re: Sizes of pointers Herbert Rosenau <os2guy@pc-rosenau.de> - 2013-08-12 14:26 +0200
Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-12 09:13 -0700
Re: Sizes of pointers Malcolm McLean <malcolm.mclean5@btinternet.com> - 2013-08-12 10:19 -0700
Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-12 18:39 +0200
Re: Sizes of pointers "James Harris" <james.harris.1@gmail.com> - 2013-08-06 15:52 +0100
Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-06 11:38 -0400
Re: Sizes of pointers "James Harris" <james.harris.1@gmail.com> - 2013-08-06 17:17 +0100
Re: Sizes of pointers Malcolm McLean <malcolm.mclean5@btinternet.com> - 2013-08-06 10:31 -0700
Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-06 21:26 +0000
Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-06 21:21 +0000
Re: Sizes of pointers Eric Sosman <esosman@comcast-dot-net.invalid> - 2013-08-06 08:49 -0400
Re: Sizes of pointers "James Harris" <james.harris.1@gmail.com> - 2013-08-06 16:12 +0100
Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-06 21:36 +0000
Re: Sizes of pointers Phil Carmody <thefatphil_demunged@yahoo.co.uk> - 2013-08-07 16:38 +0300
Re: Sizes of pointers Phil Carmody <thefatphil_demunged@yahoo.co.uk> - 2013-08-07 17:02 +0300
Re: Sizes of pointers Thomas Jahns <jahns@idontlikespam.dkrz.de> - 2013-08-07 11:01 +0200
Re: Sizes of pointers "James Harris" <james.harris.1@gmail.com> - 2013-08-07 10:41 +0100
Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-07 07:57 -0500
Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-07 16:48 +0000
Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-03 10:07 -0400
Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-03 13:47 -0500
csiph-web