From 71db845fa7480bd798a3c7a1335a062abfe7c4ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A9ranger?= Date: Wed, 29 Sep 2021 11:55:50 +0200 Subject: [PATCH] Fin du cours de C --- C/rappels.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/C/rappels.md b/C/rappels.md index becbde3..7b58da5 100644 --- a/C/rappels.md +++ b/C/rappels.md @@ -79,3 +79,14 @@ typedef struct { // Ici le type est tab et on ne crée en aucun cas une variable. ``` +# Opérateurs Logiques + +``` +& logique bits à bits +&& bits à bits + +| OU Logique Bitsà bits +|| OU Logique + +^ OU bit à bit exclusif +^^ OU Bits à bit \ No newline at end of file