Discussion :: C-MCQs
-
What is the output of this C code?
int main()
{
switch (printf("Do"))
{
case 1:
printf("First\n");
break;
case 2:
printf("Second\n");
break;
default:
printf("Default\n");
break;
}
}
Answer : Option C
Explanation :
none
Be The First To Comment