diff options
author | Silvino Silva <silvino@bk.ru> | 2018-03-12 14:34:16 +0000 |
---|---|---|
committer | Silvino Silva <silvino@bk.ru> | 2018-03-12 14:34:16 +0000 |
commit | 77fe64b172a6d1847ec80b6fa34ac06816a4030d (patch) | |
tree | 7164664bc5220b2deaafd58016fce60765c2ab3d /dev/c/datatypes.html | |
parent | 7e21c0085fec669979039856ea3754ac9573bbf3 (diff) | |
download | doc-77fe64b172a6d1847ec80b6fa34ac06816a4030d.tar.gz |
dev c added initial libraries
Diffstat (limited to 'dev/c/datatypes.html')
-rw-r--r-- | dev/c/datatypes.html | 44 |
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> |