Advertisement
Guest User

Untitled

a guest
Jul 24th, 2014
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <gmp.h>
  3.  
  4. int main(void)
  5. {
  6. mpz_t x;
  7.  
  8. mpz_init(x);
  9. mpz_set_str(x, "12345", 10);
  10. mpz_mul_ui(x, x, 2);
  11.  
  12. gmp_printf("%Zdn", x);
  13.  
  14. mpz_clear(x);
  15. return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement