#include #include int main( void) { double y = pow(256,256); // (2**8)**(2**8) = (2**8)**256 = 2**2048 perror( "pow"); printf( "y = %g\n", y); } /* output: pow: Success y = inf */