Last active
August 24, 2019 17:40
-
-
Save aledruetta/e3bbaff086d2553ded64bb3ca9ac84bc 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
// aqui o asterisco significa: | |
// "isso aqui é um ponteiro" | |
int *ptr = # | |
// aqui significa: "pega o valor | |
// que está neste endereço" | |
int x = *ptr; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment