#include<stdio.h>
int main(void) {
int t;
long long n = 4294967295;
//printf("%lu",n);
return 0;
}
Whenever I run the above code, the compiler shows the following warning
[Warning] this decimal constant is unsigned only in ISO C90
What's wrong in my code?