Wednesday, February 11, 2015

C Programming question :

#include&<stdio.h>
int main()
{
int i=1;
switch(i)
{
case 1: int x=10;
printf(" x is %d",x);
break;
}
return 0;
}
find the output?

No comments:

Post a Comment