Discussion :: C-MCQs
-
What is the output of this C code?
int main()
{
int x = 97;
switch (x)
{
case 'a':
printf("yes ");
break;
case 97:
printf("no\n");
break;
}
}
Answer : Option C
Explanation :
none
Be The First To Comment