main()1 int main()
2 {
3 	unsigned int c;
4 	double u = 123.4;
5 
6 	u *= 2LLU;
7 	c = u;
8 	printf("%f\n", u);
9 	printf("%d\n", c);
10 }
11 
12