Help for this page

Select Code to Download


  1. or download this
    extern int bar (int);
    extern int baz (int);
    
  2. or download this
    #define NVSIZE 100
    int baz (int);
    
  3. or download this
    #include "baz.h"
    
    int baz (int in) {
      return in + NVSIZE;
    }
    
  4. or download this
    use warnings;
    
    ...
    EOC
    
    foo(42);
    
  5. or download this
    bar: 42
    baz: 142
    NVSIZE: 8