Skip to content

Instantly share code, notes, and snippets.

@arpitbbhayani
Created January 9, 2020 06:10
Show Gist options
  • Save arpitbbhayani/5cb7245fda6889e83958e88d1c6180fd to your computer and use it in GitHub Desktop.
Save arpitbbhayani/5cb7245fda6889e83958e88d1c6180fd to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include <math.h>
int main(void) {
printf("%Lf\n", powl(2, 20000));
return 0;
}
$ ./a.out
inf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment