Created
November 19, 2019 17:27
-
-
Save Jongy/3c9bddfc733cb226785921d4e2ad668d 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 my_global_int = 5; | |
int mul_by_global(int y) | |
{ | |
return y * my_global_int; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment