Skip to content

Instantly share code, notes, and snippets.

@domiyanyue
Created April 25, 2020 21:49
Show Gist options
  • Save domiyanyue/a4c31f15fa96bfe3e38294b3b5655e58 to your computer and use it in GitHub Desktop.
Save domiyanyue/a4c31f15fa96bfe3e38294b3b5655e58 to your computer and use it in GitHub Desktop.
multiple declaration
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