int main(void)
{
unsigned long long a,b;
a=34ULL;//suffix LL warning
b=2;
return (int)(b*a);
}
the suffix is ULL,not LL and it is perfectly ok
also long long is a normal type nowadays.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
int main(void)
{
unsigned long long a,b;
a=34ULL;//suffix LL warning
b=2;
return (int)(b*a);
}
the suffix is ULL,not LL and it is perfectly ok
also long long is a normal type nowadays.