Advertisements
Advertisements
प्रश्न
Give an example of an infinite loop.
Give one example of an infinite loop.
संक्षेप में उत्तर
उत्तर
num = 20
while num > 10;
print(num)
num = num + 1
The above statement will create an infinite loop as the value of 'num' initially is 20, and each subsequent loop increases the value of num by 1, thus making the test condition num > 10 always true.
shaalaa.com
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?