double x = 10.3; int y; unsigned int n1 = (unsigned int)f; ______________________________
// C-style cast unsigned int n2 = unsigned(f); // functional cast //functional cast only be used in one word type. //unsigned int (f) is not right, //int *(f) is not right either.