What will be the output of the following code

#include stdio.h
int main()
{
int i = 0;
char c = 'b';
while (i 3)
{
i++;
switch (c)
{
case 'b':
printf("%c ", c);
break;
break;
}
}
printf("sooksmas\n");
}

Posted on by