Computer Science, asked by malaykantimondal76, 8 months ago

explain the following with an example of continuous loop​

Answers

Answered by jjka
1

Explanation:

an example for continuous loop:

for(i=0;i<=n;i++)

{

printf("continuous loop");

n++;

}

the above program will loop forever as the value of n is incremented every time.

hope you understood..

Similar questions