Computer Science, asked by nicolas, 1 year ago

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 Anonymous
0
y=y-5
and z=z+5 after the execution of the program

nicolas: Is this as per JavaScript
Anonymous: yes
Similar questions