1.

What will be the output of the following C code?
#include <stdio.h>
int main()
{
int p = 3;
if (4 |(p = 4))
printf("p is %d n", p);
else
printf("%d n", p);

}

A. p is 3
B. Compilation Error
C. Runtime Error
D. Garbage value
E. p is 4
Answer» F.


Discussion

No Comment Found

Related MCQs