What will be the output of following c programming part ?
#includestdio.h
void main()
{
int i=0;
switch (i)
{
case '0' : printf("A");
break;
case '1' : printf("B");
break;
default: printf("C");
}
}

Posted on by