请教高手一个关于__int64型数据输出的问题
#include <iostream>using namespace std;
typedef unsigned __int64 ULONGLONG;
int main()
{
ULONGLONG s=1000000000000
cout<<s<<endl;
return 0;
}
在vc6下编译后出现error:'operator <<' is ambiguous
请问是vc6不支持__int64?还是其他原因,请高手解决下。