What will be the output of the following program?
#include stdio.h
void main()
{
short a=2;
switch(a)
{
case 1L:
printf("Archana\n");
break;
case 2L:
printf("Aru\n");
break;
default:
printf("Archu\n");
break;
}
}

Posted on by