Discussion :: C-MCQs
-
What is the output of this C code?
int main()
{
int *p = NULL;
for (foo(); p; p = 0)
printf("In for loop\n");
printf("After loop\n");
}
Answer : Option B
Explanation :
none
Be The First To Comment