MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of following code? #include using namespace std; int main() { enum color{blue,orange,green}; enum fruit{apple,guava,orange}; int i=0; for(i=blue;i |
| A. | 0 1 2 |
| B. | 1 2 3 |
| C. | syntax error |
| D. | none of these |
| Answer» D. none of these | |