#include int main(void) { int a = 4; int b = 3; float c = (a*1.0)/b; printf("%lf\n", c); return 0; }