Advertisement
Guest User

Untitled

a guest
May 26th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.18 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <math.h>
  4.  
  5. int main()
  6. {
  7.     int po = pow(2,16);
  8.     unsigned short truc = (po-1)+1;
  9.  
  10.     printf("%d\n", truc);
  11.  
  12.     return EXIT_SUCCESS;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement