Computer Science, asked by Kamlesh123, 1 year ago

How to make infinite loop?

Answers

Answered by Incredible29
5
for (a=1,a++,a>0);

hope it helps
Answered by StormBringer
0

Answer:

You can use :

for (i=1; i >0 ; i++)

or...

for ( ; ; ; )

Both the above statements are correct and will work.

Explanation:

Hope it helps ☺️

Please do mark as Brainliest !!!

Similar questions