例3.8强制类型转换。
 main()
{float x;
int i;
x=3.6;
i=(int)x;
printf("x=%f,i=%d",x,i);

运行结果如下:
x=3.600000,i=3