in reply to Re: zero to the power zeroin thread zero to the power zero
/* 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); } [download]