From b895227c7a16fcc97d89612b30cee4b86fe989c2 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Tue, 11 Dec 2018 22:33:20 +0100 Subject: [PATCH] c/do-while --- in/public/code/c/index.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/in/public/code/c/index.rst b/in/public/code/c/index.rst index f5cae5c..f6f74d5 100644 --- a/in/public/code/c/index.rst +++ b/in/public/code/c/index.rst @@ -89,3 +89,9 @@ Loops while (condition) { expression1; } + +.. code:: c + + do { + expression1; + } while (condition);