Last active
August 24, 2019 13:04
-
-
Save aledruetta/a9835a5d11087aca0eeda061996bfbe3 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 num[] = {1, 5, 9 ,0, 4, 3}; | |
// aqui o índice 2 é usado para identificar | |
// o terceiro elemento do array | |
num[2] = -7; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment