Division Example
d2
int x, y, z;
float fx, fy, fz;
x = 1;
y = 2;
z = x / y;
printf("%d\n", z);
/* integer division */