Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This specific issue is found while running numpy test suite.

Code Block


#include <stdio.h>
#include <math.h>

int main(){
   double x = 0.5;
   double y = 1022 + 52;
   double z = pow(x, y);
   printf("%.1024f\n",z);
}

...