Merge pull request #3099 from gergesh/master

[C/en] Change bits to bytes
This commit is contained in:
Pratik Karki 2018-06-14 21:44:32 +05:45 committed by GitHub
commit 650419844c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;