MCQOPTIONS
 Saved Bookmarks
				| 1. | 
                                    What will be the output of the following C code? #include int main() { int a = 1; if (a) printf("All is Well "); printf("I am Well\n"); else printf("I am not a River\n"); } | 
                            
| A. | Output will be All is Well I am Well | 
| B. | Output will be I am Well I am not a River | 
| C. | Output will be I am Well | 
| D. | Compile time errors during compilation | 
| Answer» E. | |