Help for this page

Select Code to Download


  1. or download this
    Undefined subroutine &main::num called at perl.pl line 6.
    
  2. or download this
    use warnings;
    use strict;
    ...
    void num(uint8_t number){
        printf("%d\n", number);
    }
    
  3. or download this
    void num(int number){
        number = (uint8_t)number;
        printf("%d\n", number);
    }