1234
int a = 1; int b = 2; int c = a/b; cout << "Result: " << c << endl;
Result: 0
float a = 1; float b = 2; float c = a/b; cout << "Result: " << c << endl;