MCQOPTIONS
Saved Bookmarks
| 1. |
Which of the following is the correct output for the program given below?#include <studio.h>int main(){ int a = 50, b = 60; if(!(!a) &&a) printf("a = %d n",a)' else printf("b = %d n",b); return 0;} |
| A. | b = 60 |
| B. | a = 0 |
| C. | a = 50 |
| D. | a = 1 |
| Answer» D. a = 1 | |