“Declaración de Goto en C” Código de respuesta

Declaración de Goto en C

#include <stdio.h>

// The goto statement is known as jump statement in C.
// goto is used to transfer the program control to a predefined label.
// Try to avoid it because it as much as possible because it's used to alter-
// -the sequence of normal sequential execution and making a small mistake
// lead to endless iterations.

int main()
{
	int i = 0;
    repeat_from_here:		// the label ( destination )
    	printf("%d ",i++);
    if( i <= 10 )				// Until the condition is satisified
    	goto repeat_from_here;	// the control will jump to the label ( source )
	return 0;
}
Sam the WatchDogs

C sintaxis de la declaración de goto

goto label;
... .. ...
... .. ...
label: 
statement;
SAMER SAEID

Respuestas similares a “Declaración de Goto en C”

Preguntas similares a “Declaración de Goto en C”

Más respuestas relacionadas con “Declaración de Goto en C” en C

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código