Help for this page

Select Code to Download


  1. or download this
    $ cat a.c
    #include "b.c"
    ...
    static int foo;
    $ cc -Wall -pedantic a.c
    $
    
  2. or download this
    $ cat a.c
    #include "b.c"
    ...
    static int foo = 42;
    $ cc -Wall -pedantic a.c
    $
    
  3. or download this
    $ cat a.c
    #include "b.c"
    ...
          |            ^~~
    b.c:1:12: warning: ‘foo’ defined but not used [-Wunused-variable]
    $
    
  4. or download this
    $ cc --version
    cc (Debian 12.2.0-14) 12.2.0
    ...
    warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PUR
    +POSE.
    
    $