#include int main(void) { printf("9 / 2 = %d\n", 9/2); printf("9 / 2 = %f\n", (float)9/2); return 0; }