Esta noticia ha sido evaluado por expertos para asegurar la exactitud de nuestro tutorial.
Ejemplo 1: cómo hacer bucle infinito en c
while(1)for(;;)//The way it works is very interesting I recommend looking it up.// To stop the loop you can use the break keyword// Like thisfor(;;)break;
Ejemplo 2: cómo iniciar bucle infinito en c
//to start infinite loop set a variable that doesnt changeint flag=1;while(flag==1)//enter code here//type condition for when you want to end loop//type code//change value of flag
flag=2;
Acuérdate de que tienes concesión de agregar una reseña .
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)