1.

What will be the output of the following C code?
 #include <stdio.h>
int main()
{
int p = 4, q = 4;
p /= p / q;
printf("%d n", p);
return 0;
}

A. 1
B. 2
C. 3
D. 4
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs