Cast Operatörü
int main() { int x,y; float sonuc; x=10; y=3; sonuc= (float)x/y; printf("%d/%d=%f",x,y,sonuc); return 0; }