/* Program to check the truncation that
   happens when integer is assigned a double/float */
#include <stdio.h>

main()
{
   int x;

   x=3.0+5.0/2;
   printf("%d\n",x);

}
