首页 文章
  • 235 votes
     answers
     views

    如何在C中打印int64_t类型

    C99标准具有整数类型,字节大小类似于int64_t . 我使用以下代码: #include <stdio.h> #include <stdint.h> int64_t my_int = 999999999999999999; printf("This is my_int: %I64d\n", my_int); 我得到这个编译器警告: warning:...

热门问题