Perform the infinite loop using for loop

void main()
{
for(;;)
{
}
}
Tutorial answer:Perform infinite loop
Debugging solution:for loop it contain three thing
for(assign;condition;increme/decr)
for(;;)
so in these case condtion is null so it is peform there loop infinite time.

Post a Comment

0 Comments