+ 5
Can anyone explain about loops? Why the answer is 5 and how loops are working?
Int y=0; for(int x=0;x<9;x++) { x++; y++; } Console.Write(y);
1 Answer
+ 6
Gouse Basha
Let read this thread
https://www.sololearn.com/Discuss/1849272/?ref=app
Int y=0; for(int x=0;x<9;x++) { x++; y++; } Console.Write(y);