Which line in the following code is the loop control variabl…
Which line in the following code is the loop control variable update? Line1: total = 0; Line2: x=input(‘enter a value for x: ‘); Line3: while (x ~= 10) Line4: total=total +x; Line5: x=x*2; Line6: disp(x); Line7: x=input(‘enter a value for x: ‘); Line8: end
Read Details