about summary refs log tree commit diff stats
path: root/dev/c/datatypes.html
diff options
context:
space:
mode:
Diffstat (limited to 'dev/c/datatypes.html')
-rw-r--r--dev/c/datatypes.html44
1 files changed, 41 insertions, 3 deletions
diff --git a/dev/c/datatypes.html b/dev/c/datatypes.html
index a149c24..35b6ca4 100644
--- a/dev/c/datatypes.html
+++ b/dev/c/datatypes.html
@@ -9,6 +9,22 @@
 
         <h1>Datatypes</h1>
 
+        <h2 id="types">Types</h2>
+
+        <dl>
+            <dt>char</dt>
+            <dd>Integer, one byte.</dd>
+            <dt>int</dt>
+            <dd>Integer.</dd>
+            <dt>float</dt>
+            <dd>Single precision floating point.</dd>
+            <dt>double</dt>
+            <dd>Double precision floating point.</dd>
+            <dt>void</dt>
+            <dd>Absence of type.</dd>
+        </dl>
+
+
         <h2 id="datatypes">Data types</h2>
 
         <h2 id="int">Integer</h2>
@@ -128,13 +144,35 @@
         <h2 id="tq">Type qualifiers</h2>
         <h2 id="st">Storage class</h2>
 
-        <a href="../index.html">Development Index</a>
+        <h2 id="format">Format Type Specifiers</h2>
 
-        <p>
-        This is part of the c9-doc Manual.
+        <dl>
+            <dt>%c</dt>
+            <dd>Character</dd>
+            <dt>%s</dt>
+            <dd>String of characters</dd>
+            <dt>%d</dt>
+            <dd>Decimal integer</dd>
+            <dt>%f</dt>
+            <dd>Decimal floating point</dd>
+            <dt>%llu</dt>
+            <dd>unsigned long long</dd>
+            <dt>%o</dt>
+            <dd>Signed octal</dd>
+            <dt>%u</dt>
+            <dd>Unsigned decimal integer</dd>
+            <dt>%x</dt>
+            <dd>Unsigned hexadecimal integer</dd>
+            <dt>%p</dt>
+            <dd>Pointer address</dd>
+        </dl>
+
+        <a href="../index.html">Development Index</a>
+        <p>This is part of the c9 Manual.
         Copyright (C) 2018
         c9 team.
         See the file <a href="../../fdl-1.3-standalone.html">Gnu Free Documentation License</a>
         for copying conditions.</p>
+
     </body>
 </html>