Created
April 25, 2020 21:49
-
-
Save domiyanyue/a4c31f15fa96bfe3e38294b3b5655e58 to your computer and use it in GitHub Desktop.
multiple declaration
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 foo(); | |
int foo(); | |
int foo(){ | |
return 1; | |
} | |
int main(){ | |
return foo(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment