summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorPratik Karki <predatoramigo@gmail.com>2018-06-14 21:44:32 +0545
committerGitHub <noreply@github.com>2018-06-14 21:44:32 +0545
commit650419844c0b4095545534c4846fcdb8eb355bc9 (patch)
tree2a8793913b67a3c765d93c1bee3c9dde05ef0210
parent69b7519f4cec998bf03d4a723597d888cb2e5556 (diff)
parentf1cc661f50976aec5253666f9bb9a6f286f27fdd (diff)
Merge pull request #3099 from gergesh/master
[C/en] Change bits to bytes
-rw-r--r--c.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/c.html.markdown b/c.html.markdown
index 0c6df413..684d330a 100644
--- a/c.html.markdown
+++ b/c.html.markdown
@@ -101,7 +101,7 @@ int main (int argc, char** argv)
char y_char = 'y'; // Char literals are quoted with ''
// longs are often 4 to 8 bytes; long longs are guaranteed to be at least
- // 64 bits
+ // 8 bytes
long x_long = 0;
long long x_long_long = 0;