Last active
June 25, 2020 10:56
-
-
Save Jay-flow/3b8111373391fea5bd113ad99e5f831f 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 local variable. | |
int a = 10; | |
if (1) { | |
int a = 3 | |
} | |
printf("%d", a); | |
system("pause"); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment