CP I/O Q11

0. The following program fragment
int k = -7;
printf(“%d", 0 < lk);

  • Option : A
  • Explanation :
    k = -7. So, if 'k' is used as a Boolean variable, it will be treated as a true condition. So. ! k will be false i.e., 0. So, 0 < ? !k is actually 0 < 0. which is false. So. 0 will be printed.
Cancel reply

Your email address will not be published. Required fields are marked *


Cancel reply

Your email address will not be published. Required fields are marked *