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);