Discussion :: C-MCQs
-
What is the output of this C code?
int main()
{
int x = 0;
if (x == 1)
if (x == 0)
printf("inside if\n");
else
printf("inside else if\n");
else
printf("inside else\n");
}
Answer : Option C
Explanation :
none
Be The First To Comment