Skip to content

Instantly share code, notes, and snippets.

@b4284
Created May 26, 2015 14:56
Show Gist options
  • Save b4284/d3b9fbe5a1e6f8cdaf92 to your computer and use it in GitHub Desktop.
Save b4284/d3b9fbe5a1e6f8cdaf92 to your computer and use it in GitHub Desktop.
int a();
int b();
int main() {
return a();
}
int a() {
return b();
}
int b() {
return a();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment