#include int main(void) { double nv = 2.0 / 3; float foo = 2.0 / 3; /* Need to do stuff here that ensures that what follows below outputs "False True" */ if(foo == nv) printf("True "); else printf("False "); if(foo == (float)nv) printf("True\n"); else printf("False\n"); return 0; }