C
Programming and Technical
Programming
Program
void main()
{
int x=0,y=0;
if(x++&&++y)
{x++ }
cout<
Read Solution (Total 5)
-
- I think given program is incomplete.
- 10 years agoHelpfull: Yes(3) No(0)
- x++=0,y++=1
x++=0 - 10 years agoHelpfull: Yes(2) No(0)
- incomplete question. line 5:{x++} will not execute because in if condition x is 0(false).
- 10 years agoHelpfull: Yes(1) No(0)
- incomplete question...and condition is x++=0 and ++y=1 thn condition is (0&&1)then
condition false(0) it is not executed - 10 years agoHelpfull: Yes(1) No(0)
- statement {x++} will not execute because if statement is falsa
and also the program is incomplete. - 10 years agoHelpfull: Yes(0) No(0)
C Other Question