MCQOPTIONS
Saved Bookmarks
| 1. |
Which of the following is the correct output for the program given below ?#include <studio.h>int main ( ){ char ch; if ((ch = printf (""))); printf ("I am inside if n"); else printf ("I am inside else n"); return 0;} |
| A. | I am inside if |
| B. | I am inside else |
| C. | random value |
| D. | No Output |
| Answer» C. random value | |