Using sizeof without parentheses

C

Chris McDonald

I've been trying to wean myself off using parentheses after the sizeof
operator (and after the return keyword, too), but my understanding is
challenged by the 4th use of sizeof in the following code:

#include <stdio.h>

struct {
int i;
char *p;
} var;

typedef struct {
int i;
char *p;
} TYPE;

int main(int argc, char *argv[])
{
printf("1: %d\n", sizeof var);
printf("2: %d\n", sizeof(var));

printf("3: %d\n", sizeof TYPE);
printf("4: %d\n", sizeof(TYPE));

return 0;
}

I understand that (TYPE) is not a value, so is the 3rd use of sizeof a
sort of 'special case' of what sizeof permits?
(gcc v4.0.1 and earlier, just to make this possibly OT)

A bit confused; Thanks,
 
V

Vladimir S. Oka

Chris said:
I've been trying to wean myself off using parentheses after the sizeof
operator (and after the return keyword, too), but my understanding is
challenged by the 4th use of sizeof in the following code:

#include <stdio.h>

struct {
int i;
char *p;
} var;

typedef struct {
int i;
char *p;
} TYPE;

int main(int argc, char *argv[])
{
printf("1: %d\n", sizeof var);

This is fine.
printf("2: %d\n", sizeof(var));

No parenthesis required. Even if you opt for them, it's misleading to
"glue" them to `sizeof`.
printf("3: %d\n", sizeof TYPE);

This is not allowed, as `TYPE` is a type and parenthesis are required.

If your compiler didn't pick this up, it's either broken, or you need
to turn the warning/error settings to a higher level.
printf("4: %d\n", sizeof(TYPE));

This is as it should be.
return 0;
}

I understand that (TYPE) is not a value, so is the 3rd use of sizeof a
sort of 'special case' of what sizeof permits?
(gcc v4.0.1 and earlier, just to make this possibly OT)

See above. (GCC may allow it as an extension, but it is OT.)
 
C

Chris McDonald

This is not allowed, as `TYPE` is a type and parenthesis are required.
If your compiler didn't pick this up, it's either broken, or you need
to turn the warning/error settings to a higher level.
This is as it should be.


Thanks Vladimir; gcc seems to be doing fine reporting #3 as an error,
even without any additional flags.

But I'm a little confused as to why if "... `TYPE` is a type"
that by placing parenthesis around the type name, that it's now OK?
 
E

Eric Sosman

Chris said:
I've been trying to wean myself off using parentheses after the sizeof
operator (and after the return keyword, too), but my understanding is
challenged by the 4th use of sizeof in the following code:

#include <stdio.h>

struct {
int i;
char *p;
} var;

typedef struct {
int i;
char *p;
} TYPE;

int main(int argc, char *argv[])
{
printf("1: %d\n", sizeof var);
printf("2: %d\n", sizeof(var));

printf("3: %d\n", sizeof TYPE);
printf("4: %d\n", sizeof(TYPE));

return 0;
}

I understand that (TYPE) is not a value, so is the 3rd use of sizeof a
sort of 'special case' of what sizeof permits?
(gcc v4.0.1 and earlier, just to make this possibly OT)

A bit confused; Thanks,

The third use is an error for which the compiler must
issue a diagnostic. It is not some kind of special case
for sizeof; the construct simply doesn't work at all. (If
it works for your compiler, you are probably running the
compiler in a "C-with-extras" mode; gcc is famous/notorious
for creative departures from Standard C. Try using the
command-line options "-W -Wall -ansi -pedantic" or similar.)

By the way, "%d" is an incorrect conversion specifier for
the result of sizeof. "%d" must match an ordinary signed int,
but sizeof produces a size_t. The precise makeup of size_t
varies from one compiler to another, but it is certainly not
a signed value. I have used compilers where all of the examples
you show (except #3, which doesn't compile) would print zero.
 
V

Vladimir S. Oka

Chris said:
Thanks Vladimir; gcc seems to be doing fine reporting #3 as an error,
even without any additional flags.

But I'm a little confused as to why if "... `TYPE` is a type"
that by placing parenthesis around the type name, that it's now OK?

C99
6.5.3.4.2
The sizeof operator yields the size (in bytes) of its operand,
which may be an expression or the parenthesized name
of a type.
 
C

Chris McDonald

Vladimir S. Oka said:
C99
6.5.3.4.2
The sizeof operator yields the size (in bytes) of its operand,
which may be an expression or the parenthesized name
of a type.

Thanks;
 

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

Similar Threads


Members online

No members online now.

Forum statistics

Threads
473,766
Messages
2,569,569
Members
45,043
Latest member
CannalabsCBDReview

Latest Threads

Top