Pense-Bete relatif au conditionnel

Retour à l'index

Ce qu'il faut en retenir
Syntaxe
				if ( condition )
					instruction
				[else
					instruction2
				]
				
Exemple
					if (a < b)
						printf("Max = b\n");
					else
						printf("Max = a\n");
				


Les liens