Question: What would be printed on the standard output as a result of the following code snippet?- main()
- {
- int i=5;
- char option = 5;
- switch(option)
- {
- case '5':
- printf("case : 1 \n");
- break;
- case i:
- printf("case : 2 \n");
- break;
- default:
- printf("case : 3 \n");
- break;
- }
- return 0;
- }
- main()
- {
- int i=5;
- char option = 5;
- switch(option)
- {
- case '5':
- printf("case : 1 \n");
- break;
- case i:
- printf("case : 2 \n");
- break;
- default:
- printf("case : 3 \n");
- break;
- }
- return 0;
- }
A
B
C
D
E
case : 1
B
case : 2
C
case : 3
D
Result in compilation error
E
None
Note: Not available