I don't really understand about the question...The question is as below:
Assume i=1,j=2,k=3 & m=2.What does the statement prints?
printf("%d",m<=99&&k<m);
can someone explain it to me?thanks...
I'm not sure how else I could phrase the question.
You need to evaluate the boolean expression m<99&&k<m
and determine what happens when printf is asked to print it as an integer.