What will be the content of y and z after execute in code given below:-
For (int x = 1; x <= 10; x = x+2)
{
y -- ;
++z ;
}
Answers
Answered by
0
y=y-5
and z=z+5 after the execution of the program
and z=z+5 after the execution of the program
nicolas:
Is this as per JavaScript
Similar questions