Discussion :: C-MCQs
-
What is the output of this C code?
int main()
{
int i = 0;
for (i++; i == 1; i = 2)
printf("In for loop ");
printf("After loop\n");
}
Answer : Option A
Explanation :
none
Be The First To Comment