Skip to content

Instantly share code, notes, and snippets.

@Thiago4532
Created July 20, 2021 17:16
Show Gist options
  • Save Thiago4532/579a6d6c25c80432e45b4b25a3f84c5c to your computer and use it in GitHub Desktop.
Save Thiago4532/579a6d6c25c80432e45b4b25a3f84c5c to your computer and use it in GitHub Desktop.
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