what will be the output of the following program?
#includestdio.h 

void main()
{

switch(2)

{

case 1L:

printf("No");


case 2L:

printf("%s","GEEKS");

goto Love;


case 3L:

printf("Please");


case 4L:Love:

printf("FOR");

}
}

Posted on by