1.

What will be output when you will execute following c code?#include void main()_x005F_x000D_ {     switch(2)_x005F_x000D_       {            case 1L:printf("No");            case 2L:printf("%s","I");              goto Love;            case 3L:printf("Please");            case 4L:Love:printf("Hi");     } }

A. I
B. IPleaseHi
C. IHi
D. Compilation error
Answer» D. Compilation error


Discussion

No Comment Found

Related MCQs