Help for this page

Select Code to Download


  1. or download this
    Warning. No Inline C functions bound to Perl
    Check your C function definition(s) for Inline compatibility
    
  2. or download this
    #!C:\Perl\bin\perl.exe -w
    #Inline1.pl
    ...
        printf( "%d - %s\n", argc, argv );
        return;
    }
    
  3. or download this
    Usage: main::main(argc, argv) at c:\test\junk7.pl line 7.
    
  4. or download this
    #!C:\Perl\bin\perl.exe -w
    #Inline1.pl
    ...
         printf( "%d - %s\n", argc, argv );
        return;
    }
    
  5. or download this
    c:\test>junk7
    3 - fred
    
  6. or download this
    #!C:\Perl\bin\perl.exe -w
    #Inline1.pl
    ...
        }
        return 0;
    }
    
  7. or download this
    c:\test>junk7 1 fred bill 3.2
    1
    fred
    bill
    3.2