“GOTO déclaration en c” Réponses codées

GOTO déclaration 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 Syntaxe de la déclaration GOTO

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

Réponses similaires à “GOTO déclaration en c”

Questions similaires à “GOTO déclaration en c”

Plus de réponses similaires à “GOTO déclaration en c” dans C

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code