float A1, B, C; int A2; int main(int argc, char **argv) { C = A1 + B; /* Add float to float */ C = A2 + B; /* Add int to float */ }