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