What will be output when you will execute following c code?#include &lt;stdio.h&gt;<br />void main() {<br /> switch(2) {<br /> case 1L:printf("No");<br /> case 2L:printf("%s","I");<br /> goto Love;<br /> case 3L:printf("Please");<br /> case 4L:Love:printf("Hi");<br /> } <br />}

Correct Answer: IHi

It is possible to write label of goto statement in the case of switch case statement.