Help for this page

Select Code to Download


  1. or download this
    my $kk = kk();
    print "perl kk=$kk\n";
    ...
    END_OF_C_CODE
    
  2. or download this
    Hello!
    perl kk=0
    
  3. or download this
    my $kk = kk();
    print "perl kk=$kk\n";
    ...
             return(0);
         }
    END_OF_C_CODE
    
  4. or download this
    #include <stdio.h>
    #include <stdlib.h>
    ...
       result = kk();
       printf("result was %d\n",result);
    }