Help for this page

Select Code to Download


  1. or download this
    my $x; 
    $x *= 2;
    
    Use of uninitialized value $x in multiplication (*) at ...
    
  2. or download this
    void something( char *x ) {
        printf( "%s\n", *x );
    ...
    ...
    char *s;
    something( s );