diff options
author | Levi Bostian <levi.bostian@gmail.com> | 2014-10-17 21:11:03 -0500 |
---|---|---|
committer | Levi Bostian <levi.bostian@gmail.com> | 2014-10-17 21:11:03 -0500 |
commit | 115f35287fc54633cdcb0d0ba8f2fef1b9cc8921 (patch) | |
tree | 62e1176d31f48433776b2edaa859995d40fbf253 /c.html.markdown | |
parent | 57b5eb1bac3ccb1afd8f6359de6457318b91ffaa (diff) | |
parent | ccdd47267b28104a74352151a0424bd6f62bd390 (diff) |
Merge pull request #809 from levibostian/little-fixes-after-merging
Little fixes after merging
Diffstat (limited to 'c.html.markdown')
-rw-r--r-- | c.html.markdown | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/c.html.markdown b/c.html.markdown index 10e6fa45..6daabe94 100644 --- a/c.html.markdown +++ b/c.html.markdown @@ -5,6 +5,7 @@ contributors: - ["Adam Bard", "http://adambard.com/"] - ["Árpád Goretity", "http://twitter.com/H2CO3_iOS"] - ["Jakub Trzebiatowski", "http://cbs.stgn.pl"] + - ["Marco Scannadinari", "https://marcoms.github.io"] --- @@ -21,6 +22,10 @@ memory management and C will take you as far as you need to go. Multi-line comments look like this. They work in C89 as well. */ +/* +Multi-line comments don't nest /* Be careful */ // comment ends on this line... +*/ // ...not this one! + // Constants: #define <keyword> #define DAYS_IN_YEAR 365 @@ -74,10 +79,10 @@ int main() { long long x_long_long = 0; // floats are usually 32-bit floating point numbers - float x_float = 0.0; + float x_float = 0.0f; // 'f' suffix here denotes floating point literal // doubles are usually 64-bit floating-point numbers - double x_double = 0.0; + double x_double = 0.0; // real numbers without any suffix are doubles // Integral types may be unsigned. unsigned short ux_short; |