MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code? main() { enum resut {pass, fail}; enum result s1,s2; s1=pass; s2=fail; printf("%d",s1); } |
| A. | error |
| B. | pass |
| C. | fail |
| Answer» B. pass | |