Created
July 20, 2021 17:16
-
-
Save Thiago4532/579a6d6c25c80432e45b4b25a3f84c5c to your computer and use it in GitHub Desktop.
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
int main() { | |
int x; | |
// O scanf recebe um ponteiro, logo é passado o endereço de memória da | |
// variável como argumento. | |
scanf("%d", &x); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment