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