Created
June 25, 2020 11:23
-
-
Save Jay-flow/dc0a9eb504ec1526cbd0bbceae868c0c to your computer and use it in GitHub Desktop.
How the computer handles variables
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
#include <stdio.h> | |
int main(void) { | |
// this is a register variable. | |
register int a = 10, i; | |
for (i = 0; i < a; i++) { | |
printf("%d", i); | |
} | |
system("pause"); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment