MCQOPTIONS
Saved Bookmarks
| 1. |
Which of the following is the correct output for the program given below?#include <stdio.h>int main ( ){ int a = 25; printf ("%d %d %d n",a <= 20, a = 15, a >= 10); return 0;} |
| A. | 1 15 1 |
| B. | 1 20 1 |
| C. | 1 25 0 |
| D. | 1 1 1 |
| E. | 0 0 0 |
| Answer» B. 1 20 1 | |