如何打印64位整数呢??

如何打印64位整数呢??

#include <stdio.h>
#include <windows.h>
int main()
{
	long long  a = 992147483648;
	printf("%I64d \n", a);
	system("pause");
}

在这里插入图片描述

发布了447 篇原创文章 · 获赞 249 · 访问量 5万+

猜你喜欢

转载自blog.csdn.net/zhoutianzi12/article/details/103492729