Re: what's this syntax?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



"Michael Gong" <mwgong@xxxxxxxxxxxxxx> writes:

> The following could be compiled by gcc. Can anyone tell me what's the
> feature of gcc to support the syntax ?

I believe this is standard C99 code, not a gcc extension.  It's a gcc
extension to accept this in C90 mode.

I don't really understand what your question means, anyhow.  Can you
rephrase?

Ian

> void foo() {
>   if(
>       ( __extension__
>           (
>               (
>                   (
>                       union {
>                           int a;
>                           int b;
>                      }
>                   ) { .a =7 }
>               ) .b
>            )
>         ) == 7 ) {
>               printf("abc\n");
>     }else {
>               printf("def\n");
>    }
> }
> 
> int main() {
>  foo();
> }

[Index of Archives]     [Linux C Programming]     [Linux Kernel]     [eCos]     [Fedora Development]     [Fedora Announce]     [Autoconf]     [The DWARVES Debugging Tools]     [Yosemite Campsites]     [Yosemite News]     [Linux GCC]

  Powered by Linux