Advertisement
Guest User

a test

a guest
Feb 20th, 2017
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | None | 0 0
  1. #include <iostream>
  2. #define __STDC_FORMAT_MACROS
  3. #include <inttypes.h>
  4. int tes()
  5. {
  6.  
  7.     unsigned __int64 ui64;
  8.     char c[] = "17592186044415";
  9.     sscanf_s(c, "%I64x", &ui64);
  10.     printf("test uint64_t : %" PRIu64 "\n", ui64);
  11.     system("pause");
  12.     return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement