Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.
Login
Login
OnlineGDB Q&A
Questions
Unanswered
Tags
Ask a Question
Ask a Question
Explain me the output please...
0
votes
asked
Feb 16, 2019
by
anonymous
#include <stdio.h>
int main()
{
int x;
x=4<5+3&&7;
printf("%d",x);
return 0;
}
c
-help-plz
needhelp
Please
log in
or register to answer this question.
2 Answers
0
votes
answered
Feb 16, 2019
by
pankaj
Answer is 4
first check 4<5 then true so 1
and next 3&&7 is give 3
x=1+3
x=4
asked
Feb 17, 2019
by
anonymous
how is 3&&7 =3?????
Please
log in
or register to add a comment.
0
votes
answered
Feb 20, 2019
by
anonymous
for this answer will be 1 . here , in order to evaluate ur expression ,should be aware of precedence table . among all the operators + will have more precedence ,then < and finally &&
((4<(5+3))&&7) =1
Please
log in
or register to add a comment.
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and receive answers from other members of the community.
...