Help for this page

Select Code to Download


  1. or download this
           -Idirectory
                may  be  used  in  conjunction  with -P to tell the C prep
    +rocessor
    ...
                with  any  words  recognized  by  the C preprocessor such 
    +as "if",
                "else" or "define".)
    
  2. or download this
    #define ADD(x,y)  x + y
    
    my $r = ADD( getPfromSomewhere(), getQfromSomewhere() );
    ...
    my $s = ADD( geta(), getb() );
    
  3. or download this
    # 1 "macro.pl"
    # 1 "<command-line>"
    ...
    ...
    my $s = geta() + getb();