Top

Discussion

Predict the output of following program.

#include 

int main()
{
 char flag=0x0f;

 flag &= ~0x02;
 printf("%d",flag);

 return 0;
}

 

  • A.13
  • B.d
  • C.22
  • D.10

Answer: A

No answer description available for this question.

No comment is present. Be the first to comment.
Loading…

Post your comment