Using sizeof without parentheses

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Chris McDonald

    Using sizeof without parentheses

    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,

    --
    Chris.
  • Vladimir S. Oka

    #2
    Re: Using sizeof without parentheses


    Chris McDonald wrote:[color=blue]
    > 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);[/color]

    This is fine.
    [color=blue]
    > printf("2: %d\n", sizeof(var));[/color]

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

    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.
    [color=blue]
    > printf("4: %d\n", sizeof(TYPE));[/color]

    This is as it should be.
    [color=blue]
    > 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)[/color]

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

    Comment

    • Chris McDonald

      #3
      Re: Using sizeof without parentheses

      "Vladimir S. Oka" <novine@btopenw orld.com> writes:
      [color=blue]
      >Chris McDonald wrote:[color=green]
      >> printf("3: %d\n", sizeof TYPE);[/color][/color]
      [color=blue]
      >This is not allowed, as `TYPE` is a type and parenthesis are required.[/color]
      [color=blue]
      >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.[/color]
      [color=blue][color=green]
      >> printf("4: %d\n", sizeof(TYPE));[/color][/color]
      [color=blue]
      >This is as it should be.[/color]


      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?

      --
      Chris.

      Comment

      • Eric Sosman

        #4
        Re: Using sizeof without parentheses

        Chris McDonald wrote:
        [color=blue]
        > 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,[/color]

        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.

        --
        Eric Sosman
        esosman@acm-dot-org.invalid

        Comment

        • Vladimir S. Oka

          #5
          Re: Using sizeof without parentheses


          Chris McDonald wrote:[color=blue]
          > "Vladimir S. Oka" <novine@btopenw orld.com> writes:
          >[color=green]
          > >Chris McDonald wrote:[color=darkred]
          > >> printf("3: %d\n", sizeof TYPE);[/color][/color]
          >[color=green]
          > >This is not allowed, as `TYPE` is a type and parenthesis are required.[/color]
          >[color=green]
          > >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.[/color]
          >[color=green][color=darkred]
          > >> printf("4: %d\n", sizeof(TYPE));[/color][/color]
          >[color=green]
          > >This is as it should be.[/color]
          >
          >
          > 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?[/color]

          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.

          Comment

          • Chris McDonald

            #6
            Re: Using sizeof without parentheses

            "Vladimir S. Oka" <novine@btopenw orld.com> writes:
            [color=blue]
            >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.[/color]

            Thanks;

            --
            Chris.

            Comment

            Working...