#include <stdio.h>

int main()
/* Curiouser and curiouser - in C f= 1 is not necessarily
the same as f= 1.0 */
{
    float f;
    f= 1/3;
    printf ("1/3 is %f\n",f);
    f= 1.0/3.0;
    printf ("1.0/3.0 is %f\n",f);
    return 0;
}


