473,387 Members | 1,493 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,387 software developers and data experts.

sizeof

Hi,
How can we write a function, which functionality is similar to sizeof
function
any one send me source code
Reddy

Jun 18 '06
90 8249

Frederick Gotham wrote:
Xicheng Jia posted:
Can any function do it that way! :-)

A macro function perhaps:
#define SizeOf(Type) \
( \
(const char*)128 - \
\
(const char*)( (const Type*)128 - 1 ) \
)
--

Frederick Gotham


it will not compile if we give like this, any Solutions for this ??
SizeOf( 4 )

Jun 22 '06 #51
On 2006-06-22, $hiv..... <sh********@huawei.com> wrote:

Frederick Gotham wrote:
Xicheng Jia posted:
> Can any function do it that way! :-)

A macro function perhaps:
#define SizeOf(Type) \
( \
(const char*)128 - \
\
(const char*)( (const Type*)128 - 1 ) \
)
--

Frederick Gotham


it will not compile if we give like this, any Solutions for this ??
SizeOf( 4 )


Just use regular sizeof().

--
Andrew Poelstra < http://www.wpsoftware.net/blog >
To email me, use "apoelstra" at the above address.
I know that area of town like the back of my head.
Jun 22 '06 #52
$hiv..... posted:

#define SizeOf(Type) \
( \
(const char*)128 - \
\
(const char*)( (const Type*)128 - 1 ) \
)

it will not compile if we give like this, any Solutions for this ??
SizeOf( 4 )


#define SizeOf( L-value ) \
( \
(const char*)(&L-value + 1) \
- (const char*)(&L-value) \
)

I'm getting bored of this one... any ideas for another riddle?
Jun 22 '06 #53

Keith Thompson <ks***@mib.org> writes:
Kenneth Brody <ke******@spamcop.net> writes:
[...]
(BTW, does the Standard say where variable-length arrays are stored?


No more than it says where anything is stored. VLAs are like any
other auto objects; they're created at the point of declaration, and
cease to exist at the end of their scope.
Can the compiler do the equivalent of malloc/free to handle it?)


Sure.
I've seen systems which can "allocate" memory without actually using
any memory until something is written to it. As long as you have at
least 103 bits of address space, one could "allocate" that much memory
on such a system, as long as you didn't try to write to all of it.


There's some debate about whether such systems are conforming.


OT : interestingly enough Linux malloc works like this. It was a
surprise to me.

from the man page :

By default, Linux follows an optimistic memory allocation
strategy. This means that when malloc() returns non-NULL there
is no guarantee that the memory really is available. This is a
really bad bug.
Jun 22 '06 #54
On Wed, 21 Jun 2006 16:29:36 -0400, CBFalconer <cb********@yahoo.com>
wrote:
tedu wrote:
Richard Tobin wrote:
Kenneth Brody <ke******@spamcop.net> wrote:
... snip ...
Well, it would require a reentrant version of malloc/free

Fortunately these are widely available.


such as? all the implementations i'm familiar with (which may be
a limited set) have some degree of support for threads, but are
certainly not safe to call from within a signal handler.


Since malloc, by its very nature, is allocating a limited system
resource, namely memory, it must have protected access to various
variables. This means it cannot be truly re-entrant. However, by
use of suitable concurrency constructs it can be made thread safe.


Nonsense. A trivial implementation of malloc which just passes an
allocation request on to the underlying O/S and an implementation
of free that does the same to perform the deallocation can
certainly be fully re-entrant.

Oz
--
A: Because it fouls the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Jun 23 '06 #55
ozbear wrote:
CBFalconer <cb********@yahoo.com> wrote:
tedu wrote:
Richard Tobin wrote:
Kenneth Brody <ke******@spamcop.net> wrote:

... snip ...

> Well, it would require a reentrant version of malloc/free

Fortunately these are widely available.

such as? all the implementations i'm familiar with (which may be
a limited set) have some degree of support for threads, but are
certainly not safe to call from within a signal handler.


Since malloc, by its very nature, is allocating a limited system
resource, namely memory, it must have protected access to various
variables. This means it cannot be truly re-entrant. However, by
use of suitable concurrency constructs it can be made thread safe.


Nonsense. A trivial implementation of malloc which just passes an
allocation request on to the underlying O/S and an implementation
of free that does the same to perform the deallocation can
certainly be fully re-entrant.


Where did you find an OS even mentioned? If you have one, what
makes you think its system calls are re-entrant?

--
Chuck F (cb********@yahoo.com) (cb********@maineline.net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home.att.net> USE maineline address!
Jun 23 '06 #56
CBFalconer wrote:

ozbear wrote:
CBFalconer <cb********@yahoo.com> wrote:
tedu wrote:
Richard Tobin wrote:
> Kenneth Brody <ke******@spamcop.net> wrote:
>
... snip ...
>
>> Well, it would require a reentrant version of malloc/free
>
> Fortunately these are widely available.

such as? all the implementations i'm familiar with (which may be
a limited set) have some degree of support for threads, but are
certainly not safe to call from within a signal handler.

Since malloc, by its very nature, is allocating a limited system
resource, namely memory, it must have protected access to various
variables. This means it cannot be truly re-entrant. However, by
use of suitable concurrency constructs it can be made thread safe.


Nonsense. A trivial implementation of malloc which just passes an
allocation request on to the underlying O/S and an implementation
of free that does the same to perform the deallocation can
certainly be fully re-entrant.


Where did you find an OS even mentioned? If you have one, what
makes you think its system calls are re-entrant?


This is what the standard says about reentrancy:
The functions in the standard library are not guaranteed to be
reentrant and may modify objects with static storage duration.

I also recall a somewhat cerebral analysis of the standard,
by Ben Pfaff,
which identified a few standard library functions
as having to be reentrant.
I don't recall malloc as being one of them.

The point I'm getting at,
is that you're slipping towards offtopicancy.

--
pete
Jun 23 '06 #57
pete wrote:
CBFalconer wrote:
ozbear wrote:
CBFalconer <cb********@yahoo.com> wrote:
tedu wrote:
> Richard Tobin wrote:
>> Kenneth Brody <ke******@spamcop.net> wrote:
>>
... snip ...
>>
>>> Well, it would require a reentrant version of malloc/free
>>
>> Fortunately these are widely available.
>
> such as? all the implementations i'm familiar with (which may be
> a limited set) have some degree of support for threads, but are
> certainly not safe to call from within a signal handler.

Since malloc, by its very nature, is allocating a limited system
resource, namely memory, it must have protected access to various
variables. This means it cannot be truly re-entrant. However, by
use of suitable concurrency constructs it can be made thread safe.

Nonsense. A trivial implementation of malloc which just passes an
allocation request on to the underlying O/S and an implementation
of free that does the same to perform the deallocation can
certainly be fully re-entrant.


Where did you find an OS even mentioned? If you have one, what
makes you think its system calls are re-entrant?


This is what the standard says about reentrancy:
The functions in the standard library are not guaranteed to be
reentrant and may modify objects with static storage duration.

I also recall a somewhat cerebral analysis of the standard, by Ben
Pfaff, which identified a few standard library functions as having
to be reentrant. I don't recall malloc as being one of them.

The point I'm getting at, is that you're slipping towards
offtopicancy.


Hardly. I am pointing out why the malloc group cannot be reentrant.

--
Chuck F (cb********@yahoo.com) (cb********@maineline.net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home.att.net> USE maineline address!
Jun 23 '06 #58
CBFalconer <cb********@yahoo.com> wrote:
Richard Bos wrote:
Kenneth Brody <ke******@spamcop.net> wrote:
Keith Thompson wrote:
> Kenneth Brody <ke******@spamcop.net> writes:
[...]
> I've seen systems which can "allocate" memory without actually
> using any memory until something is written to it. As long as
> you have at least 103 bits of address space, one could "allocate"
> that much memory on such a system, as long as you didn't try to
> write to all of it.

There's some debate about whether such systems are conforming.

What would be non-conforming about it? (My guess is that, given
this scenario, it's possible that malloc succeeds [ie: returns a
non-NULL value], but the program fails later when it access this
memory and the O/S discovers "oops, there's really not enough
virtual memory available to allocate".)


Yes. And this is anathema to solid programming and safe computer
systems.


Why should the program fail?


Don't ask me, ask the people who write such over-clock^tconfid^t
allocating systems, and typically do make one program or another crash
and burn when they run out of over-allocated memory.

Richard
Jun 23 '06 #59
In article <44***************@yahoo.com>,
CBFalconer <cb********@maineline.net> wrote:
Since malloc, by its very nature, is allocating a limited system
resource, namely memory, it must have protected access to various
variables. This means it cannot be truly re-entrant. However, by
use of suitable concurrency constructs it can be made thread safe.
Nonsense. A trivial implementation of malloc which just passes an
allocation request on to the underlying O/S and an implementation
of free that does the same to perform the deallocation can
certainly be fully re-entrant.
Where did you find an OS even mentioned?
Why does it have to have been mentioned, when providing an example of
how something is possible?
If you have one, what
makes you think its system calls are re-entrant?


Most operating systems will provide locking such that an implementation
of malloc that just calls the OS for each allocation will appear to be
re-entrant in that you can't make it "go wrong" by calling malloc from
signal handlers. Perhaps you meant to exclude this by adding "truly"
before "re-entrant"?

-- Richard
Jun 23 '06 #60
Richard Bos wrote:
CBFalconer <cb********@yahoo.com> wrote:

.... snip ...

Why should the program fail?


Don't ask me, ask the people who write such over-clock^tconfid^t
allocating systems, and typically do make one program or another
crash and burn when they run out of over-allocated memory.


When you snip, please snip in units of paragraphs, rather than
isolating a single sentence which is asinine without any context.
Especially if it is me you are snipping.

--
Chuck F (cb********@yahoo.com) (cb********@maineline.net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home.att.net> USE maineline address!
Jun 23 '06 #61
Richard Tobin wrote:
CBFalconer <cb********@maineline.net> wrote:
Since malloc, by its very nature, is allocating a limited system
resource, namely memory, it must have protected access to various
variables. This means it cannot be truly re-entrant. However, by
use of suitable concurrency constructs it can be made thread safe. Nonsense. A trivial implementation of malloc which just passes an
allocation request on to the underlying O/S and an implementation
of free that does the same to perform the deallocation can
certainly be fully re-entrant.

Where did you find an OS even mentioned?


Why does it have to have been mentioned, when providing an example of
how something is possible?
If you have one, what
makes you think its system calls are re-entrant?


Most operating systems will provide locking such that an implementation
of malloc that just calls the OS for each allocation will appear to be
re-entrant in that you can't make it "go wrong" by calling malloc from
signal handlers. Perhaps you meant to exclude this by adding "truly"
before "re-entrant"?


If you closely examine the first quoted paragraph above (which
happens to have originated with me, but someone removed the
attributions) you will find the phrase "use of suitable concurrency
constructs". Such use does not make a routine re-entrant, it
simply prevents it from being used in a reentrant manner.

--
Chuck F (cb********@yahoo.com) (cb********@maineline.net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home.att.net> USE maineline address!
Jun 23 '06 #62
In article <44***************@yahoo.com>,
CBFalconer <cb********@maineline.net> wrote:
Most operating systems will provide locking such that an implementation
of malloc that just calls the OS for each allocation will appear to be
re-entrant in that you can't make it "go wrong" by calling malloc from
signal handlers.
If you closely examine the first quoted paragraph above (which
happens to have originated with me, but someone removed the
attributions) you will find the phrase "use of suitable concurrency
constructs".


Your sentence continued:
> However, by
> use of suitable concurrency constructs it can be made thread safe.


I was not referring to threading, but to signal handlers.

In any case, you would need a careful definition of re-entrancy to
support the claim that malloc() cannot be re-entrant. If malloc()
uses a system call, then even if no signal handlers are called while
the system call is in progress, they might be called before malloc()
itself has returned, and malloc() might be safely called again before
the first malloc() has returned.

So your argument becomes "some part of malloc cannot be re-entrant".
In the implement-by-system call case that part is almost the entire
call, but in principle it could probably be as small as one
instruction.

-- Richard
Jun 23 '06 #63

CBFalconer wrote:
Ben C wrote:
On 2006-06-21, CBFalconer <cb********@yahoo.com> wrote:
Richard Bos wrote:
Kenneth Brody <ke******@spamcop.net> wrote:
... snip ...>
> What would be non-conforming about it? (My guess is that, given
> this scenario, it's possible that malloc succeeds [ie: returns a
> non-NULL value], but the program fails later when it access this
> memory and the O/S discovers "oops, there's really not enough
> virtual memory available to allocate".)

Yes. And this is anathema to solid programming and safe computer
systems.

Why should the program fail? This whole scenario is for
multi-process systems, so all that need be done is to have the
program sleep until the actual core is available. All is then
copasetic, remembering that there are no guarantees about speed.


This is sometimes a good approach, but it can cause deadlock.
Suppose you have two processes (two instances of the same process
let's say) that have both allocated huge amounts of memory, and
have both reached line 6 below, and are both waiting for those
100 bytes (there are only 50 bytes left):


Anytime you have concurrent processes contending for resources you
can have deadlocks.


False.

If the concurrent processes are unrestricted in resource use
then there can be deadlock. But a more conservative policy
for doing resource allocation can easily avoid deadlock (and
I don't mean just in trivial ways either).

Excuse my OT post; it bugs me when broad sweeping
statements are made that aren't even approximately correct.

Jun 24 '06 #64
en******@yahoo.com wrote:
CBFalconer wrote:

.... snip ...

Anytime you have concurrent processes contending for resources you
can have deadlocks.


False.

If the concurrent processes are unrestricted in resource use
then there can be deadlock. But a more conservative policy
for doing resource allocation can easily avoid deadlock (and
I don't mean just in trivial ways either).

Excuse my OT post; it bugs me when broad sweeping
statements are made that aren't even approximately correct.


Read what I wrote with a modicum of care. Can have does not mean
will have.

--
Chuck F (cb********@yahoo.com) (cb********@maineline.net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home.att.net> USE maineline address!
Jun 24 '06 #65

CBFalconer wrote:
en******@yahoo.com wrote:
CBFalconer wrote:
... snip ...
>
Anytime you have concurrent processes contending for resources you
can have deadlocks.
False.

If the concurrent processes are unrestricted in resource use
then there can be deadlock. But a more conservative policy
for doing resource allocation can easily avoid deadlock (and
I don't mean just in trivial ways either).

Excuse my OT post; it bugs me when broad sweeping
statements are made that aren't even approximately correct.

Read what I wrote with a modicum of care. Can have does not mean
will have.
I did, and I ask you to do the same. There are
well known algorithms for doing resource allocation
that can never deadlock. Standard reading in an
undergraduate OS course.

Jul 18 '06 #66
"Joe Wright" <jo********@comcast.netwrote in message
news:pr******************************@comcast.com. ..
>
One of the older and time honored bits of advice to youngsters is "Don't
bother telling Granny how to suck eggs." She knows how. She's been doing
it since before she gave birth to your mother.
Yeah I've heard that saying, but why did Granny do that? Is there a reason
to suck eggs I am not aware of? Is it a sexual methaphore? Who sucks eggs???
Fry them in a little butter for a delicious treat, but sucking raw eggs?
Granny was nasty!

-Mabden
Jul 18 '06 #67
On Tue, 18 Jul 2006 06:36:56 GMT, in comp.lang.c , "Mabden"
<Ma****@SBCglobal.netwrote:
>Yeah I've heard that saying, but why did Granny do that? Is there a reason
to suck eggs I am not aware of? Is it a sexual methaphore?
is that some sort of meths-based perfume? :-)
>Who sucks eggs???
Fry them in a little butter for a delicious treat, but sucking raw eggs?
Excellent source of protein actually.
>Granny was nasty!
/Your/ granny maybe....

gd&r
--
Mark McIntyre

"Debugging is twice as hard as writing the code in the first place.
Therefore, if you write the code as cleverly as possible, you are,
by definition, not smart enough to debug it."
--Brian Kernighan
Jul 18 '06 #68

pn*********@gmail.com wrote:
Hi,
How can we write a function, which functionality is similar to sizeof
function
any one send me source code
Reddy
Depends on how sloppy the answer can be.

In the strictest sense, you *cant* write sizeof any other way. That's
because sizeof ISNT like anything else in C. It may look like a
function as most people put parentheses around its operand. But it's
not really a function, it's something more primitive, much like a unary
operator like minus or not.

You see, sizeof can take any expression or type as an argement.
Nowhere else in C (I think) can you put either a variable or type in
the same place without serious syntax errors.

But sizeof is special, as you sometimes would like to know the size of
a type, like sizeof unsigned long int, and sometimes you want to know
the size of a variable, like sizeof FILE.

Now there are several half-arsed ways of doing a sizeof(type) using
macros:

unsigned long int Size;

#define PutSizeofTypeIntoSize(t) { t a,b; Size=b-a; } // notice it
returns size in a global!

..
and several half-arsed ways of doing a sizeof(var) using macros,
something like:

unsigned long int Size;

#define PutSizeofVarIntoSize(v) { Size= &v[1]-&v[0]; } // notice it
returns size in a global!
But IN GENERAL, you might want to say sizeof( a + b ) or sizeof( main
), and I dont hinnk you can write a macro that will do that. Oh, and
BTW, sieof DOESNT EVALUATE it's argument, unlike anywhere else in C.
it does parse the argument, and go through most of the folderol of
evaluating it, everything but generating code to do so. You see sizeof
happens at compile-time, not at run-time.

Hope this gives you a glimmer of what's going on.

Jul 18 '06 #69
Ancient_Hacker wrote:
pn*********@gmail.com wrote:
>Hi,
How can we write a function, which functionality is similar to sizeof
function
any one send me source code
Reddy

Depends on how sloppy the answer can be.

In the strictest sense, you *cant* write sizeof any other way. That's
because sizeof ISNT like anything else in C. It may look like a
function as most people put parentheses around its operand. But it's
not really a function, it's something more primitive, much like a unary
operator like minus or not.
True enough. It *is* a unary operator, rather than being "much like" one.
You see, sizeof can take any expression or type as an argement.
Nowhere else in C (I think) can you put either a variable or type in
the same place without serious syntax errors.
#define VAR_OR_TYPE(x)
VAR_OR_TYPE(int)
int x;
VAR_OR_TYPE(x)

A bit contrived though ;-)
But sizeof is special, as you sometimes would like to know the size of
a type, like sizeof unsigned long int, and sometimes you want to know
the size of a variable, like sizeof FILE.

Now there are several half-arsed ways of doing a sizeof(type) using
macros:
and *none* of them are any good.
unsigned long int Size;

#define PutSizeofTypeIntoSize(t) { t a,b; Size=b-a; } // notice it
returns size in a global!
That is just completely wrong.
and several half-arsed ways of doing a sizeof(var) using macros,
something like:

unsigned long int Size;

#define PutSizeofVarIntoSize(v) { Size= &v[1]-&v[0]; } // notice it
returns size in a global!
The above will always set Size to 1.
But IN GENERAL, you might want to say sizeof( a + b ) or sizeof( main
), and I dont hinnk you can write a macro that will do that. Oh, and
BTW, sieof DOESNT EVALUATE it's argument, unlike anywhere else in C.
it does parse the argument, and go through most of the folderol of
evaluating it, everything but generating code to do so. You see sizeof
happens at compile-time, not at run-time.

Hope this gives you a glimmer of what's going on.
I doubt it will give much insite, since your example where fundamentally
floored.

There is a very good reason for sizeof being an operator in C, even
ignoring your glaring errors it is not possible to write an equivalent
to sizeof in portable C.
--
Flash Gordon, living in interesting times.
Web site - http://home.flash-gordon.me.uk/
comp.lang.c posting guidelines and intro:
http://clc-wiki.net/wiki/Intro_to_clc
Jul 18 '06 #70

Flash Gordon wrote:
Ancient_Hacker wrote:
pn*********@gmail.com wrote:
Hi,
How can we write a function, which functionality is similar to sizeof
function
any one send me source code
Reddy
Depends on how sloppy the answer can be.

In the strictest sense, you *cant* write sizeof any other way. That's
because sizeof ISNT like anything else in C. It may look like a
function as most people put parentheses around its operand. But it's
not really a function, it's something more primitive, much like a unary
operator like minus or not.

True enough. It *is* a unary operator, rather than being "much like" one.
Well, seeing as it's unlike every other unary operator in a very basic
way, I stick with my story.
That is just completely wrong.
A tad harsh. I was sitting out on the deck having my morning coffee
and didnt have a C compiler on the laptop. Now that I do, I see I
forgot some very necessary fribbles and frobs. Try this:

#define PutSizeofTypeIntoSize(t) { t a,b; Size=((char *)&a)-((char
*)&b); }

unsigned long int Size;

#define PutSizeofVarIntoSize(v) { Size= &v[1]-&v[0]; } // notice it
returns size in a global!

The above will always set Size to 1.
Well, we're both wrong. It always returns the size of an ELEMENT of V,
if V is of type array. It's a syntax error if the variable isnt an
array.

I doubt it will give much insite, since your example where fundamentally
floored.
insite : hows about "insight"
where: hows about "were"
floored: hows about "flawed"

Jul 18 '06 #71
Ancient_Hacker wrote:
A tad harsh. I was sitting out on the deck having my morning coffee
and didnt have a C compiler on the laptop. Now that I do, I see I
forgot some very necessary fribbles and frobs. Try this:

#define PutSizeofTypeIntoSize(t) { t a,b; Size=((char *)&a)-((char
*)&b); }
There's rather a strong reliance there on the compiler allocating
objects in just the right order & packing.
>I doubt it will give much insite, since your example where fundamentally
floored.

insite : hows about "insight"
where: hows about "were"
floored: hows about "flawed"
How's about "how's"?

--
Chris "Me: hows now, brown cows. Cows: HOW! HOW! HOW!" Dollin
"Who are you? What do you want?" /Babylon 5/

Jul 18 '06 #72
Ancient_Hacker wrote:
Flash Gordon wrote:
>Ancient_Hacker wrote:
>>pn*********@gmail.com wrote:
Hi,
How can we write a function, which functionality is similar to sizeof
function
any one send me source code
Reddy
Depends on how sloppy the answer can be.

In the strictest sense, you *cant* write sizeof any other way. That's
because sizeof ISNT like anything else in C. It may look like a
function as most people put parentheses around its operand. But it's
not really a function, it's something more primitive, much like a unary
operator like minus or not.
True enough. It *is* a unary operator, rather than being "much like" one.

Well, seeing as it's unlike every other unary operator in a very basic
way, I stick with my story.
It takes one operand and produces one value. Where is the difference?
>That is just completely wrong.

A tad harsh. I was sitting out on the deck having my morning coffee
and didnt have a C compiler on the laptop. Now that I do, I see I
forgot some very necessary fribbles and frobs. Try this:

#define PutSizeofTypeIntoSize(t) { t a,b; Size=((char *)&a)-((char
*)&b); }
Still fundamentally broken. The compiler is not obliged to place a and b
next to each other in memory nor to put them in any particular order. In
any case, subtracting pointers to different objects is undefined.
>>unsigned long int Size;

#define PutSizeofVarIntoSize(v) { Size= &v[1]-&v[0]; } // notice it
returns size in a global!
The above will always set Size to 1.

Well, we're both wrong. It always returns the size of an ELEMENT of V,
if V is of type array. It's a syntax error if the variable isnt an
array.
I failed to read it carefully enough. However, if the parameter is of
array type it sets Size to 1.
markg@markgordon-lp ~
$ cat t.c
#include <stdio.h>
#define PutSizeofVarIntoSize(v) { Size= &v[1]-&v[0]; }
int main(void)
{
int Size,t[4];
PutSizeofVarIntoSize(t);
printf("%d\n",Size);
return 0;
}
markg@markgordon-lp ~
$ gcc -ansi -pedantic t.c

markg@markgordon-lp ~
$ ./a.exe
1

markg@markgordon-lp ~

So for the instances where it does not produce a syntax error what I
stated is true. What you stated is *never* true.
>I doubt it will give much insite, since your example where fundamentally
floored.

insite : hows about "insight"
where: hows about "were"
floored: hows about "flawed"
Feel free to complain about a dyslexic making spelling errors if you
want, it still does not make the code you posted any better. It is still
fundamentally flawed.
--
Flash Gordon, living in interesting times.
Web site - http://home.flash-gordon.me.uk/
comp.lang.c posting guidelines and intro:
http://clc-wiki.net/wiki/Intro_to_clc
Jul 18 '06 #73

Flash Gordon wrote:
Still fundamentally broken. The compiler is not obliged to place a and b
next to each other in memory nor to put them in any particular order. In
any case, subtracting pointers to different objects is undefined.
I guess from an ivory-tower perspective you're right.

In the real world, you might be mildly interested to learn that
compilers usually place variables next to each other. Has on every
compiler I've ever tried, let's see: Unix v7 C on a 11/34, Borland C
since version 1.0, Microsoft C since 1985 IIRC, Sun C since 1985, SGI C
since 1997, gnu C since about forever. I'd love to hear of a single
counter-example. BTW I could fix that problem by declaring the vars
in a struct.

>
>unsigned long int Size;

#define PutSizeofVarIntoSize(v) { Size= &v[1]-&v[0]; } // notice it
returns size in a global!
The above will always set Size to 1.
Well, we're both wrong. It always returns the size of an ELEMENT of V,
if V is of type array. It's a syntax error if the variable isnt an
array.

I failed to read it carefully enough. However, if the parameter is of
array type it sets Size to 1.
Well, here with Microsoft Visual C 2005, it returns 4 or a syntax
error. Guess it's implementation dependent?
So for the instances where it does not produce a syntax error what I
stated is true. What you stated is *never* true.
See above.

Feel free to complain about a dyslexic making spelling errors if you
want,
Those can't be dyslexic or spelling errors. They're just the wrong
words.

it still does not make the code you posted any better. It is still
fundamentally flawed.

Well, that fundementally flawed code has been running in a Web app
since 1997, serving up about 50,000 pages a day. And in about 200,000
client-side apps.

..

Jul 18 '06 #74
"Ancient_Hacker" <gr**@comcast.netwrites:
In the real world, you might be mildly interested to learn that
compilers usually place variables next to each other. Has on every
compiler I've ever tried, let's see: Unix v7 C on a 11/34, Borland C
since version 1.0, Microsoft C since 1985 IIRC, Sun C since 1985, SGI C
since 1997, gnu C since about forever. I'd love to hear of a single
counter-example.
Some compilers pack small objects, e.g. short or char objects,
next to one another, so that they can save space (due to
alignment requirements). If you have
short a;
int b;
short c;
then `a' and `c' might be placed next to one another.
BTW I could fix that problem by declaring the vars in a struct.
You'd still have the problem of padding between struct members.

(Why not just use the sizeof operator? That's what it's for.)
--
"Large amounts of money tend to quench any scruples I might be having."
-- Stephan Wilms
Jul 18 '06 #75
Ancient_Hacker said:
>
Flash Gordon wrote:
>Still fundamentally broken. The compiler is not obliged to place a and b
next to each other in memory nor to put them in any particular order. In
any case, subtracting pointers to different objects is undefined.

I guess from an ivory-tower perspective you're right.

In the real world, you might be mildly interested to learn that
compilers usually place variables next to each other. Has on every
compiler I've ever tried, let's see: Unix v7 C on a 11/34, Borland C
since version 1.0, Microsoft C since 1985 IIRC, Sun C since 1985, SGI C
since 1997, gnu C since about forever. I'd love to hear of a single
counter-example.
Ah, I see we're back to "all the world's compilers are the same as the ones
I've used". The world is bigger than that. Counter-examples may exist or
they may not - I don't know, since I never bothered to find out, because my
programs don't rely on such nonsense - but even if no counter-example
exists today, one might be released tomorrow.
BTW I could fix that problem by declaring the vars in a struct.
Wrong.
>>unsigned long int Size;

#define PutSizeofVarIntoSize(v) { Size= &v[1]-&v[0]; } // notice it
returns size in a global!
The above will always set Size to 1.

Well, we're both wrong. It always returns the size of an ELEMENT of V,
if V is of type array. It's a syntax error if the variable isnt an
array.

I failed to read it carefully enough. However, if the parameter is of
array type it sets Size to 1.

Well, here with Microsoft Visual C 2005, it returns 4 or a syntax
error. Guess it's implementation dependent?
No, it's required to evaluate to 1 if v has pointer type or array type. So
you appear to be claiming Visual C is non-conforming.

<snip>

--
Richard Heathfield
"Usenet is a strange place" - dmr 29/7/1999
http://www.cpax.org.uk
email: rjh at above domain (but drop the www, obviously)
Jul 18 '06 #76
In article <11*********************@m79g2000cwm.googlegroups. com>,
Ancient_Hacker <gr**@comcast.netwrote:
>In the real world, you might be mildly interested to learn that
compilers usually place variables next to each other. Has on every
compiler I've ever tried, let's see: Unix v7 C on a 11/34, Borland C
since version 1.0, Microsoft C since 1985 IIRC, Sun C since 1985, SGI C
since 1997, gnu C since about forever. I'd love to hear of a single
counter-example.
Counter-examples from SGI C:

1) -ivpad Improves cache behavior by causing the linker to perform
intervariable padding of some large variables. This is in
effect by default. (C, C++, F77, F90)

2) -LD_LAYOUT:
multigot
This is for internal use. Usually, the linker attempts
to link everything, generating a single GOT. If this
fails, it reruns the layout phase and possibly creates
multiple GOT regions. This option causes the first
layout pass to fail. This is used in conjunction with
the mgot_threshold option described previously.

(GOT is Global Offset Table, and the relevance here is that when
procedure variables are large enough that they cannot all be completely
addressed by a single address register together with a standard-width
relative offset, then the linker will split the space to use multiple
address registers, in which case syntactically adjacent variables
will not necessarily be adjacent in addresses.)

3) -LD_LAYOUT:
reorder_file=feedback_file
Names a feedback file. When specified, function layout
in the text section is optimized to minimize page
faults and I-cache misses based upon the frequency
information in feedback_file. This file is usually
produced by prof(1)/cvperf(1) or sscord(1)/ssorder(1),
but a user can also construct or modify this ASCII
file.

4) initialized static or extern variables are not usually placed adjacent
to uninitialized static or extern variables, because the uninitialized
globals and statics are handled through a "demand-zero page" (a hardware
mechanism that automatically initializes a memory page to 0 when
it is allocated and given to a process.) Initialized variables have
to have their initial value read from the object file (which might
not happen until the first reference to the virtual memory page,
as SGI IRIX can postpone loading in code, constants, and
globals and statics, reading them from the object file when needed
[and for code and constants, instead of copying them to a disk swap file,
IRIX can just drop the virtual descriptor, leading the values to be
reloaded from the object file if they turn out to be needed later.]
--
Is there any thing whereof it may be said, See, this is new? It hath
been already of old time, which was before us. -- Ecclesiastes
Jul 18 '06 #77
Ancient_Hacker wrote:
Flash Gordon wrote:
>Still fundamentally broken. The compiler is not obliged to place a and b
next to each other in memory nor to put them in any particular order. In
any case, subtracting pointers to different objects is undefined.

I guess from an ivory-tower perspective you're right.

In the real world, you might be mildly interested to learn that
compilers usually place variables next to each other. Has on every
compiler I've ever tried, let's see: Unix v7 C on a 11/34, Borland C
since version 1.0, Microsoft C since 1985 IIRC, Sun C since 1985, SGI C
since 1997, gnu C since about forever. I'd love to hear of a single
counter-example.
Given the right patches and correct options gcc *will* rearrange
variables. I don't know whether it would swap them in the specific
instance given, but there is no reason for anyone to make sure it
doesn't. As to counter example:
markg@home ~ $ gcc -ansi -pedantic -O3 t.c
markg@home ~ $ ./a.out
1
4
-4
markg@home ~ $ gcc --version
gcc (GCC) 4.1.1 (Gentoo 4.1.1)
Copyright (C) 2006 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

markg@home ~ $ cat t.c
#include <stdio.h>
#define PutSizeofVarIntoSize(v) { Size= &v[1]-&v[0]; }
#define PutSizeofTypeIntoSize(t) { t a,b; Size=((char *)&a)-((char
*)&b); }
int main(void)
{
int Size,t[4];
PutSizeofVarIntoSize(t)
printf("%d\n",Size);
PutSizeofTypeIntoSize(char)
printf("%d\n",Size);
PutSizeofTypeIntoSize(int)
printf("%d\n",Size);
return 0;

}

So both of your macros have failed on a *real* system.
BTW I could fix that problem by declaring the vars
in a struct.
Then you potentially hit problems with padding.
>>>>unsigned long int Size;
>
#define PutSizeofVarIntoSize(v) { Size= &v[1]-&v[0]; } // notice it
returns size in a global!
The above will always set Size to 1.
Well, we're both wrong. It always returns the size of an ELEMENT of V,
if V is of type array. It's a syntax error if the variable isnt an
array.
I failed to read it carefully enough. However, if the parameter is of
array type it sets Size to 1.

Well, here with Microsoft Visual C 2005, it returns 4 or a syntax
error. Guess it's implementation dependent?
Nope, I guess you didn't post the code I provided. I built in on Visual
Studio 2005 and I got 1, just as the standard requires. Here is the code
again.
#include <stdio.h>
#define PutSizeofVarIntoSize(v) { Size= &v[1]-&v[0]; }
int main(void)
{
int Size,t[4];
PutSizeofVarIntoSize(t);
printf("%d\n",Size);
return 0;

}

With the code other set of code I've posted further above I get
1
0
0

This I think is actually wrong.

However, this all just further demonstrates how bad your suggestions are.
>So for the instances where it does not produce a syntax error what I
stated is true. What you stated is *never* true.

See above.
Nope.
>Feel free to complain about a dyslexic making spelling errors if you
want,

Those can't be dyslexic or spelling errors. They're just the wrong
words.
Since I am a dyslexic, and have read up on the topic, I have a
reasonable idea about the types of mistakes dyslexic make.
it still does not make the code you posted any better. It is still
>fundamentally flawed.

Well, that fundementally flawed code has been running in a Web app
since 1997, serving up about 50,000 pages a day. And in about 200,000
client-side apps.
I just hope that I don't use any code you've had anything to do with.
I've tried both your macros and keep finding systems on which they
demonstrably fail and they are completely pointless since sizeof exists.
Personally I would reject any candidate who thought that using a macro
such as you have show was ever a good idea. That reminds me, I have a CV
to check for a C programming position.
--
Flash Gordon, living in interesting times.
Web site - http://home.flash-gordon.me.uk/
comp.lang.c posting guidelines and intro:
http://clc-wiki.net/wiki/Intro_to_clc
Jul 18 '06 #78
Richard Heathfield wrote:
Ancient_Hacker said:
>Flash Gordon wrote:
>>Still fundamentally broken. The compiler is not obliged to place a and b
next to each other in memory nor to put them in any particular order. In
any case, subtracting pointers to different objects is undefined.
I guess from an ivory-tower perspective you're right.

In the real world, you might be mildly interested to learn that
compilers usually place variables next to each other. Has on every
compiler I've ever tried, let's see: Unix v7 C on a 11/34, Borland C
since version 1.0, Microsoft C since 1985 IIRC, Sun C since 1985, SGI C
since 1997, gnu C since about forever. I'd love to hear of a single
counter-example.

Ah, I see we're back to "all the world's compilers are the same as the ones
I've used". The world is bigger than that. Counter-examples may exist or
they may not - I don't know, since I never bothered to find out, because my
programs don't rely on such nonsense - but even if no counter-example
exists today, one might be released tomorrow.
Fortunately I only had to try one of my compilers to find a counter
example. I can even change the results by changing the optimisation
level on the compiler. Strangely enough, the second system I tried, AIX
5.3 using gcc, also failed. I guess on some systems they tend to
allocate things the opposite way around to the order generally used on
x86 based systems :-)
>BTW I could fix that problem by declaring the vars in a struct.

Wrong.
>>>>>unsigned long int Size;
>>
>#define PutSizeofVarIntoSize(v) { Size= &v[1]-&v[0]; } // notice it
>returns size in a global!
The above will always set Size to 1.
Well, we're both wrong. It always returns the size of an ELEMENT of V,
if V is of type array. It's a syntax error if the variable isnt an
array.
I failed to read it carefully enough. However, if the parameter is of
array type it sets Size to 1.
Well, here with Microsoft Visual C 2005, it returns 4 or a syntax
error. Guess it's implementation dependent?

No, it's required to evaluate to 1 if v has pointer type or array type. So
you appear to be claiming Visual C is non-conforming.
I claim it is conforming by default and Ancient_Hacker is wrong, since
it produced 1 when I tried it on MSVC 2005. Sometimes having an MSDN
subscription is useful :-)
--
Flash Gordon, living in interesting times.
Web site - http://home.flash-gordon.me.uk/
comp.lang.c posting guidelines and intro:
http://clc-wiki.net/wiki/Intro_to_clc
Jul 18 '06 #79
"Ancient_Hacker" <gr**@comcast.netwrites:
Flash Gordon wrote:
>Still fundamentally broken. The compiler is not obliged to place a and b
next to each other in memory nor to put them in any particular order. In
any case, subtracting pointers to different objects is undefined.

I guess from an ivory-tower perspective you're right.

In the real world, you might be mildly interested to learn that
compilers usually place variables next to each other. Has on every
compiler I've ever tried, let's see: Unix v7 C on a 11/34, Borland C
since version 1.0, Microsoft C since 1985 IIRC, Sun C since 1985, SGI C
since 1997, gnu C since about forever. I'd love to hear of a single
counter-example. BTW I could fix that problem by declaring the vars
in a struct.
You're not just assuming that the variables are adjacent; you're also
assuming that the second declared variable has a higher address than
the first. It may well be that that's true for most or all existing
implementations. I don't know about that. What I do know is that
there is absolutely no such guarantee in the standard, and there's no
need to write code that depends on such behavior.
>>unsigned long int Size;

#define PutSizeofVarIntoSize(v) { Size= &v[1]-&v[0]; } // notice it
returns size in a global!
The above will always set Size to 1.

Well, we're both wrong. It always returns the size of an ELEMENT of V,
if V is of type array. It's a syntax error if the variable isnt an
array.

I failed to read it carefully enough. However, if the parameter is of
array type it sets Size to 1.

Well, here with Microsoft Visual C 2005, it returns 4 or a syntax
error. Guess it's implementation dependent?
I find that very surprising. Here's a small program that uses your
macro:
================================
#include <stdio.h>

#define PutSizeofVarIntoSize(v) { Size= &v[1]-&v[0]; }

int main(void)
{
size_t Size;
double arr[10];
PutSizeofVarIntoSize(arr)
printf("Size = %d\n", (int)Size);
return 0;
}
================================

When I compile and execute it, it prints "Size = 1". Try it with MSVC
2005, and lets us know what it prints. Or show us some complete
program using your macro, as you posted it, that demonstrates it
setting Size to any value other than 1. (Or admit that you've made a
mistake.)

An aside: That's not the best way to write a statement-like macro.
Note that there's no semicolon after the call; I could have added one,
but it would have created an empty statement. Question 10.4 in the
comp.lang.c FAQ, <http://www.c-faq.com/>, describes how to write a
multi-statement macro.

Since your macro only has one statement, and it's an expression
statement at that, it would be better written as:

#define PutSizeofVarIntoSize(v) (Size = &(v)[1] - &(v)[0])

or, for that matter:

#define GetSizeofVar(v) (&(v)[1] - &(v)[0])

which still doesn't work, but it's a much cleaner macro definition.
>So for the instances where it does not produce a syntax error what I
stated is true. What you stated is *never* true.
Well, it's true for an array of some character type, but that's
correct only in the sense that a stopped clock is right twice a day.

[...]
it still does not make the code you posted any better. It is still
>fundamentally flawed.


Well, that fundementally flawed code has been running in a Web app
since 1997, serving up about 50,000 pages a day. And in about 200,000
client-side apps.
Great. How many different platforms has it been running on? If a
piece of code is horribly and gratuitously non-portable, but happens
to work on a single platform, it will continue to work indefinitely on
that single platform, and perhaps on others as well. Running it
millions of times over several years proves nothing.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <* <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Jul 18 '06 #80
Ancient_Hacker wrote:
You see, sizeof can take any expression or type as an argement.
The operands of sizeof can only be
either parenthesized object types, or expressions of object type.

--
pete
Jul 18 '06 #81
Flash Gordon wrote:
>
Ancient_Hacker wrote:
Flash Gordon wrote:
Ancient_Hacker wrote:
pn*********@gmail.com wrote:
>>sizeof
It takes one operand and produces one value. Where is the difference?
sizeof can take a parenthesized type name as an operand,
and other unary operators, can't.

--
pete
Jul 18 '06 #82

Richard Heathfield wrote:
Ancient_Hacker said:
No, it's required to evaluate to 1 if v has pointer type or array type. So
you appear to be claiming Visual C is non-conforming.

Did I forget to write that you need to coerce the ptr to char*?:

Then you do get the array element size from the macro.

One might wonder if some folks belong to the intentionally-obtuse club.
One might estimate that 98% of "C" experts would realize in an instant
that (char *) is needed to get the right answer. Choosing to instead
be ingenuous and scatter veiled insults may make the writer feel
superior while not being at all helpful.

I concede that somewhere there may be a few C compilers for the
Abaci-37,the Turkmenistan base 3 computer, with DES encypted address
bus, that might not return correct results on that macro. Late news
arrives that an old compiler, for a dying architecture, and a bankrupt
company, has two obscure and (horrors-- non-standard!) options which
might, under certain circumstances, willy-nilly rearrange globals.

Also didnt think it worth mentioning, as it's obvious, that one needs
to take care re structure field packing, although this is easily turned
off in most compilers with a command-line switch,
and also easily tested for.

Jul 19 '06 #83

pete wrote:
Ancient_Hacker wrote:
You see, sizeof can take any expression or type as an argement.

The operands of sizeof can only be
either parenthesized object types, or expressions of object type.

--
pete
I meant you can use considerable flexibility in what you put after
sizeof, witness:

#include<stdio.h>

main()
{ int a,b,c;
int count = 1;

count = sizeof( 6 );
count = sizeof( a + b );
count = sizeof( (double *) &a );
count = sizeof( sizeof(a) );
count = sizeof( &printf );
count = sizeof( printf("foo" ) );
count = sizeof( 1.234E-4 );
count = sizeof( 3.4 / 5.6 );
count = sizeof( (float
************************************************** *) &a );
printf( "%d\n", count );
return 0;

}

Jul 19 '06 #84
Ancient_Hacker said:
>
Richard Heathfield wrote:
>Ancient_Hacker said:
>No, it's required to evaluate to 1 if v has pointer type or array type.
So you appear to be claiming Visual C is non-conforming.


Did I forget to write that you need to coerce the ptr to char*?:
I have no idea what you intended to write. I was commenting on what you
actually wrote. By the way, unsigned char * would be a better choice.

<diatribe snipped>
Also didnt think it worth mentioning, as it's obvious, that one needs
to take care re structure field packing, although this is easily turned
off in most compilers with a command-line switch,
and also easily tested for.
If you're looking for "easy", I suggest using the sizeof operator.

--
Richard Heathfield
"Usenet is a strange place" - dmr 29/7/1999
http://www.cpax.org.uk
email: rjh at above domain (but drop the www, obviously)
Jul 19 '06 #85
Ancient_Hacker wrote:
Richard Heathfield wrote:
>Ancient_Hacker said:
>No, it's required to evaluate to 1 if v has pointer type or array type. So
you appear to be claiming Visual C is non-conforming.

Did I forget to write that you need to coerce the ptr to char*?:

Then you do get the array element size from the macro.

One might wonder if some folks belong to the intentionally-obtuse club.
One might estimate that 98% of "C" experts would realize in an instant
that (char *) is needed to get the right answer. Choosing to instead
be ingenuous and scatter veiled insults may make the writer feel
superior while not being at all helpful.
You claimed to know what you were doing, and our only evidence of what
you believed was the code you posted. That code was WRONG. I posted an
example using that code and stated what it produced. You then claimed
that another compiler produced a different result to mine, obviously
without testing doing any testing.
I concede that somewhere there may be a few C compilers for the
Abaci-37,the Turkmenistan base 3 computer, with DES encypted address
bus, that might not return correct results on that macro. Late news
arrives that an old compiler, for a dying architecture, and a bankrupt
company, has two obscure and (horrors-- non-standard!) options which
might, under certain circumstances, willy-nilly rearrange globals.
And on PPC based Linux systems using CURRENT versions of gcc. Also on
AIX 5.3 using the gcc version that IBM currently supply. From what I can
see AIX is still very much alive and kicking.
Also didnt think it worth mentioning, as it's obvious, that one needs
to take care re structure field packing, although this is easily turned
off in most compilers with a command-line switch,
and also easily tested for.
All entirely pointless when all C compilers conforming to a widely
implemented 17 year old standard have a sizeof operator that is
*designed* to do the job and is the only method guaranteed to do the
correct thing. Also, if a compiler is inserting padding by default then
there is probably a *very* good reason for it to do so. Such as a
significant performance hit if you don't.
--
Flash Gordon, living in interesting times.
Web site - http://home.flash-gordon.me.uk/
comp.lang.c posting guidelines and intro:
http://clc-wiki.net/wiki/Intro_to_clc
Jul 19 '06 #86
In article <ln************@nuthaus.mib.orgKeith Thompson <ks***@mib.orgwrites:
"Ancient_Hacker" <gr**@comcast.netwrites:
....
In the real world, you might be mildly interested to learn that
compilers usually place variables next to each other. Has on every
compiler I've ever tried, let's see: Unix v7 C on a 11/34, Borland C
since version 1.0, Microsoft C since 1985 IIRC, Sun C since 1985, SGI C
since 1997, gnu C since about forever. I'd love to hear of a single
counter-example. BTW I could fix that problem by declaring the vars
in a struct.

You're not just assuming that the variables are adjacent; you're also
assuming that the second declared variable has a higher address than
the first.
And a third assumption is is that there is no padding between the variables.
And I have used compilers that did padding between variables when they
were "too small".
--
dik t. winter, cwi, kruislaan 413, 1098 sj amsterdam, nederland, +31205924131
home: bovenover 215, 1025 jn amsterdam, nederland; http://www.cwi.nl/~dik/
Jul 19 '06 #87
"Ancient_Hacker" <gr**@comcast.netwrites:
pete wrote:
>Ancient_Hacker wrote:
You see, sizeof can take any expression or type as an argement.

The operands of sizeof can only be
either parenthesized object types, or expressions of object type.

I meant you can use considerable flexibility in what you put after
sizeof, witness:

#include<stdio.h>

main()
{ int a,b,c;
int count = 1;

count = sizeof( 6 );
count = sizeof( a + b );
count = sizeof( (double *) &a );
count = sizeof( sizeof(a) );
count = sizeof( &printf );
count = sizeof( printf("foo" ) );
count = sizeof( 1.234E-4 );
count = sizeof( 3.4 / 5.6 );
count = sizeof( (float
************************************************** *) &a );
printf( "%d\n", count );
return 0;

}
Ok, but once again that's not what you actually wrote. What you
actually wrote was:

You see, sizeof can take any expression or type as an argement.

which is not correct. pete's statement was correct. To be precise,
the relevant portion of the grammar is:

unary-expression:
...
sizeof unary-expression
sizeof ( type-name )

This, of course, covers all the cases in your sample program, but it
does not cover a number of cases implied by your original statement,
such as:
sizeof(void)
sizeof main
sizeof obj.bitfield
sizeof exit(0)
/* All of thses are constraint violations. */

Now I'm sure you know all of this, but that's not really the point.
The point is that you seem to expect us all to assume that you know
what you're talking about, and automatically and quietly translate any
incorrect or imprecise statements you might make into something that's
correct and precise. Nobody else here gets that kind of special
treatment (I certainly don't), and neither will you.

If you're such an expert, take the time and effort to make correct
statements in the first place. If you make mistakes, as we all do,
that's ok, but don't get upset when someone corrects them. We're
going to judge what you write by what you write; we're not going to
waste our time trying to guess what you meant.

Finally, I'll make some comments on the program you posted (as I would
do for anyone else):

"int main(void)" is preferred to "main()".

Proper indentation is helpful, even for small programs. (Possibly you
used tabs for indentation and your news software ate them.)

If you wanted to demonstrate the "considerable flexibility in
what you put after sizeof", you might have shown some examples of
"sizeof ( type-name )".

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <* <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Jul 19 '06 #88
"Ancient_Hacker" <gr**@comcast.netwrites:
Richard Heathfield wrote:
>Ancient_Hacker said:
>No, it's required to evaluate to 1 if v has pointer type or array type. So
you appear to be claiming Visual C is non-conforming.


Did I forget to write that you need to coerce the ptr to char*?:
Yes, you did.
Then you do get the array element size from the macro.

One might wonder if some folks belong to the intentionally-obtuse club.
One might estimate that 98% of "C" experts would realize in an instant
that (char *) is needed to get the right answer. Choosing to instead
be ingenuous and scatter veiled insults may make the writer feel
superior while not being at all helpful.
Nobody was being intentionally obtuse. We know that you need to cast
the pointers to char* for the expression to work properly, but it
wasn't at all clear that you knew that. It's a fairly common error.
In fact, it's common enough that it's in the FAQ; see question 4.4.

Calling yourself "Ancient_Hacker" doesn't make us assume that you're
always right. You made a mistake. It happens.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <* <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Jul 19 '06 #89

Keith Thompson wrote:

<Much>

Have lots of free time, do you?

Jul 19 '06 #90
On 19 Jul 2006 13:11:03 -0700, in comp.lang.c , "Ancient_Hacker"
<gr**@comcast.netwrote:
>
Keith Thompson wrote:

<Much>

Have lots of free time, do you?
Apparently you have nothing better to do than make snide remarks about
people who are trying to help you. That suggests something to me.

--
Mark McIntyre

"Debugging is twice as hard as writing the code in the first place.
Therefore, if you write the code as cleverly as possible, you are,
by definition, not smart enough to debug it."
--Brian Kernighan
Jul 19 '06 #91

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

Similar topics

3
by: Sunil Menon | last post by:
Dear All, A class having no member variables and only a method sizeof(object) will return 1byte in ANSI and two bytes in Unicode. I have the answer for this of how in works in ANSI. But I don't...
2
by: Xiangliang Meng | last post by:
Hi, all. What will we get from sizeof(a class without data members and virtual functions)? For example: class abnormity { public: string name() { return "abnormity"; }
19
by: Martin Pohlack | last post by:
Hi, I have a funtion which shall compute the amount for a later malloc. In this function I need the sizes of some struct members without having an instance or pointer of the struct. As...
9
by: M Welinder | last post by:
This doesn't work with any C compiler that I can find. They all report a syntax error: printf ("%d\n", (int)sizeof (char)(char)2); Now the question is "why?" "sizeof" and "(char)" have...
7
by: dam_fool_2003 | last post by:
#include<stdio.h> int main(void) { unsigned int a=20,b=50, c = sizeof b+a; printf("%d\n",c); return 0; } out put: 24
42
by: Christopher C. Stacy | last post by:
Some people say sizeof(type) and other say sizeof(variable). Why?
8
by: junky_fellow | last post by:
Consider the following piece of code: #include <stddef.h> int main (void) { int i, j=1; char c; printf("\nsize =%lu\n", sizeof(i+j));
4
by: cs | last post by:
#include <stdio.h> #include <stdlib.h> typedef struct{ unsigned a; unsigned *b; unsigned k; }tp; tp e, *ee;
5
by: Francois Grieu | last post by:
Does this reliably cause a compile-time error when int is not 4 bytes ? enum { int_size_checked = 1/(sizeof(int)==4) }; Any better way to check the value of an expression involving sizeof...
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: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
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
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

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.