// bdoubles.cpp : Defines the entry point for the console application.
//


#include <stdio.h>
int main(int argc, char **argv)
/* This program doesn't behave as you think it might */
{
    int a= 3;  
    int b= 2;
    double d;
    d= b*(a/b);
    printf ("d is %f - or is it\n",d);
    return 0;
}
