MCQOPTIONS
Saved Bookmarks
| 1. |
Study the following 'C' program: #include void main() { static a,b; while(a> b++) } What will be the value of a and b on the execution of above program? |
| A. | a=0, b=1 |
| B. | a=0, b=0 |
| C. | a=1, b=1 |
| D. | None of these |
| Answer» B. a=0, b=0 | |