比如
const long long int c=18446744072003734121;
[Warning] this decimal constant is unsigned only in ISO C90
解决方案:
const long long c=18446744072003734121ULL;
比如
const long long int c=18446744072003734121;
[Warning] this decimal constant is unsigned only in ISO C90
解决方案:
const long long c=18446744072003734121ULL;