From 1415cfcfffa7acaf7cd3058c78461bd43c142c78 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Tue, 11 Dec 2018 22:42:08 +0100 Subject: [PATCH] c/constants --- in/public/code/c/index.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/in/public/code/c/index.rst b/in/public/code/c/index.rst index f6f74d5..a0374ac 100644 --- a/in/public/code/c/index.rst +++ b/in/public/code/c/index.rst @@ -16,6 +16,13 @@ Comments // single line comment /* multi line comment */ +Constants +--------- + +.. code:: c + + #define NUMERIC_CONSTANT 123 + Main ----