Created
December 13, 2019 09:17
-
-
Save kkroesch/c3dfe6b07e032b1c5bf4f5e47b2d15bf to your computer and use it in GitHub Desktop.
Self-explaining memory sizes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define KB *(1 << 10) | |
#define MB *(1 << 20) | |
#define GB *(1U << 30) | |
int buffer = 64 KB; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment