How to write infinite loop ? | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
+ 1

How to write infinite loop ?

9th Aug 2016, 2:16 PM
SUCHIT YADAV
SUCHIT YADAV - avatar
6 ответов
+ 3
while(true) do { }while(true); for(;;)
9th Aug 2016, 7:02 PM
Mihai Dancaescu
Mihai Dancaescu - avatar
+ 1
while (true)
9th Aug 2016, 2:58 PM
Eric Zeus
Eric Zeus - avatar
+ 1
void doSomething(){ doSomething(); }
9th Aug 2016, 11:08 PM
WPimpong
WPimpong - avatar
0
slam
9th Aug 2016, 2:28 PM
Fehd Fehd
Fehd Fehd - avatar
0
for(;;) works too. but it isn't as fancy as while.
9th Aug 2016, 6:40 PM
André Policarpo
0
while(true) do { }while(true); for(;;)
9th Aug 2016, 7:02 PM
Mihai Dancaescu
Mihai Dancaescu - avatar