int x; float f; int main() { x = 4; f = x; // Assign int var to a float var ---> will convert int to float ! x = f; }