MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code?#include <stdio.h> enum color{Red, Yellow, Green}; enum color fun(); int main() { enum color n = fun(); printf("%d n", n); } int fun() { return Red; } |
| A. | Red |
| B. | Yellow |
| C. | Green |
| D. | Compilation Error |
| E. | None of these |
| Answer» E. None of these | |