From 8dc2e07ed28b8b91388f37115f6be9a888c60b23 Mon Sep 17 00:00:00 2001 From: "yassin.elhakoun" <yassin.el-hakouni@etu.hesge.ch> Date: Thu, 9 Nov 2023 14:08:13 +0100 Subject: [PATCH] =?UTF-8?q?Update=20cours=5F2.md=20(ligne=20171=20op=C3=A9?= =?UTF-8?q?rateur=20=3D=20=C3=A9tait=20utilis=C3=A9=20au=20lieu=20de=20=3D?= =?UTF-8?q?=3D)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- slides/cours_2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slides/cours_2.md b/slides/cours_2.md index c25a134..9d09383 100644 --- a/slides/cours_2.md +++ b/slides/cours_2.md @@ -168,7 +168,7 @@ if (x) { // si x s'évalue à `vrai` ```C int x, y; x = y = 3; -if (x = 2) +if (x == 2) printf("x = 2 est vrai.\n"); else if (y < 8) printf("y < 8.\n"); -- GitLab