Here are the values of c in each case:
1. int a = 10, b = 2;
c = 12, 8, 20, 5
2. float a = 10, b = 2;
c = 12, 8, 20, 5
3. int a = 10; float b = 2;
c = 12, 8, 20, 5
The data types of the operands determine the result. For integer operands, the result is an integer. For floating point operands, the result is floating point.