http://www.perlmonks.org?node_id=600853


in reply to zero to the power zero

Hmmmm....
$ cat zero.c #include <stdio.h> int main() { printf("0 ** 0 == %d\n", 0 ^ 0); } $ ./zero 0 ** 0 == 0

Test your modules with bleadperl!

  rsync -avz rsync://public.activestate.com/perl-current/ .
  ./Configure -des -Dusedevel -Dprefix=/path/to/test/perl
  make test
  make install

Now, please test you modules! If you have test failures that don't happen with Perl 5.8.8, send a simplified test case to

perlbug at perl.org

Replies are listed 'Best First'.
Re^2: zero to the power zero
by zentara (Archbishop) on Feb 19, 2007 at 14:51 UTC
    Use math
    /* gcc -o zero zero.c -lm */ #include <stdio.h> #include <math.h> int main() { int i = 0; int j = 0; int k; k = pow(i,j); printf("%d\n",k); }
    Output: 1

    I'm not really a human, but I play one on earth. Cogito ergo sum a bum
Re^2: zero to the power zero
by Anonymous Monk on Feb 19, 2007 at 14:53 UTC
    printf("0 ** 0 == %d\n", 0 ^ 0);
    That's the xor operator.