Skip to content

Instantly share code, notes, and snippets.

@domiyanyue
Created April 25, 2020 19:14
Show Gist options
  • Save domiyanyue/82990751036f4d844bf4d6bd3dd424c3 to your computer and use it in GitHub Desktop.
Save domiyanyue/82990751036f4d844bf4d6bd3dd424c3 to your computer and use it in GitHub Desktop.
forward declar.cpp
int bar();
int foo(){
return bar();
}
int bar(){
return 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment