Discussion :: C-MCQs
-
Comment on the output of this C code?
int main()
{
int a = 1;
switch (a)
{
case a:
printf("Case A ");
default:
printf("Default");
}
}
Answer : Option D
Explanation :
none
Be The First To Comment