MCQOPTIONS
 Saved Bookmarks
				| 1. | 
                                    What will be the output of the following C code? #include int main() { int a = 1; if (a--) printf("True"); if (a++) printf("False"); } | 
                            
| A. | True | 
| B. | False | 
| C. | True False | 
| D. | No Output | 
| Answer» B. False | |