0
Hi.. What is the meaning of this coding? Int(count =1; count<x; count++)
Iam a student https://www.sololearn.com/discuss/2112825/?ref=app
2 ответов
+ 2
Kindly read about "for loops".
0
(int count = 1; count < x; count++)
count starts at 1. Each time the loop is executed, count is increased by 1. The loop will end when count becomes greater then or equal to whatever x is.