MCQOPTIONS
 Saved Bookmarks
				| 1. | 
                                    What is the output of this C code? #include int main() { int a = 10; double b = 5.6; int c; c = a + b; printf("%d", c); } | 
                            
| A. | 15 | 
| B. | 16 | 
| C. | 15.6 | 
| D. | 10 | 
| Answer» B. 16 | |